gbl: darwin support

Co-authored-by: Bobby Rong <rjl931189261@126.com>
This commit is contained in:
Arnout Engelen 2022-05-09 13:28:02 +02:00
parent c777cdf5c5
commit b7c8400546
No known key found for this signature in database
GPG key ID: 061107B0F74A6DAA
2 changed files with 6 additions and 2 deletions

View file

@ -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; };

View file

@ -2198,7 +2198,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 { };