grex: remove darwin from inputs

master
Sandro Jäckel 2021-02-12 04:23:51 +01:00
parent b36b97dce6
commit a75108e3f5
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,7 @@
, fetchFromGitHub
, fetchpatch
, rustPlatform
, darwin
, Security
, libiconv
}:
@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
sha256 = "1viph7ki6f2akc5mpbgycacndmxnv088ybfji2bfdbi5jnpyavvs";
};
buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
doInstallCheck = true;
installCheckPhase = ''

View File

@ -1333,7 +1333,9 @@ in
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 { };