grex: remove darwin from inputs

This commit is contained in:
Sandro Jäckel
2021-02-12 20:35:40 +01:00
parent b36b97dce6
commit a75108e3f5
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
, fetchFromGitHub , fetchFromGitHub
, fetchpatch , fetchpatch
, rustPlatform , rustPlatform
, darwin , Security
, libiconv , libiconv
}: }:
@@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
sha256 = "1viph7ki6f2akc5mpbgycacndmxnv088ybfji2bfdbi5jnpyavvs"; sha256 = "1viph7ki6f2akc5mpbgycacndmxnv088ybfji2bfdbi5jnpyavvs";
}; };
buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; buildInputs = lib.optionals stdenv.isDarwin [ Security ];
doInstallCheck = true; doInstallCheck = true;
installCheckPhase = '' installCheckPhase = ''
+3 -1
View File
@@ -1333,7 +1333,9 @@ in
gremlin-console = callPackage ../applications/misc/gremlin-console { }; gremlin-console = callPackage ../applications/misc/gremlin-console { };
grex = callPackage ../tools/misc/grex { }; grex = callPackage ../tools/misc/grex {
inherit (darwin.apple_sdk.frameworks) Security;
};
gcsfuse = callPackage ../tools/filesystems/gcsfuse { }; gcsfuse = callPackage ../tools/filesystems/gcsfuse { };