mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
joker: fix build on darwin
This commit is contained in:
parent
92da50afa8
commit
618075428b
@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "joker";
|
||||
@ -13,6 +13,8 @@ buildGoModule rec {
|
||||
|
||||
modSha256 = "0i16vf7n1xfz5kp9w3fvyc9y9wgz4h396glgpdaznpxjr12rb43j";
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
preBuild = ''
|
||||
go generate ./...
|
||||
'';
|
||||
|
@ -9296,7 +9296,9 @@ in
|
||||
|
||||
jmeter = callPackage ../applications/networking/jmeter {};
|
||||
|
||||
joker = callPackage ../development/interpreters/joker {};
|
||||
joker = callPackage ../development/interpreters/joker {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
davmail = callPackage ../applications/networking/davmail {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user