Merge pull request #172181 from raboof/gbl-support-on-darwin
gbl: darwin support
This commit is contained in:
commit
907fd6ddf5
2 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, fetchpatch
|
||||
|
@ -6,6 +7,7 @@
|
|||
, openssl
|
||||
, testers
|
||||
, gbl
|
||||
, Security
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
|
@ -31,7 +33,7 @@ rustPlatform.buildRustPackage rec {
|
|||
cargoSha256 = "sha256-RUZ6wswRtV8chq3+bY9LTRf6IYMbZ9/GPl2X5UcF7d8=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ];
|
||||
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
passthru.tests.version =
|
||||
testers.testVersion { package = gbl; };
|
||||
|
|
|
@ -2214,7 +2214,9 @@ with pkgs;
|
|||
|
||||
fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { };
|
||||
|
||||
gbl = callPackage ../tools/archivers/gbl { };
|
||||
gbl = callPackage ../tools/archivers/gbl {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
genann = callPackage ../development/libraries/genann { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue