Merge pull request #172610 from tjni/fix-garage-darwin

garage: fix build on Darwin
main
Sandro 2 years ago committed by GitHub
commit 997c1a8379
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/tools/filesystems/garage/default.nix
  2. 4
      pkgs/top-level/all-packages.nix

@ -1,4 +1,5 @@
{ lib, rustPlatform, fetchFromGitea, protobuf, testers, garage }:
{ lib, stdenv, rustPlatform, fetchFromGitea, protobuf, testers, Security, garage }:
rustPlatform.buildRustPackage rec {
pname = "garage";
version = "0.7.0";
@ -15,6 +16,8 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ protobuf ];
buildInputs = lib.optional stdenv.isDarwin Security;
passthru = {
tests.version = testers.testVersion { package = garage; };
};

@ -6079,7 +6079,9 @@ with pkgs;
gaphor = python3Packages.callPackage ../tools/misc/gaphor { };
garage = callPackage ../tools/filesystems/garage { };
garage = callPackage ../tools/filesystems/garage {
inherit (darwin.apple_sdk.frameworks) Security;
};
garmin-plugin = callPackage ../applications/misc/garmin-plugin {};

Loading…
Cancel
Save