summary refs log tree commit diff
path: root/pkgs/development/tools/cue
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-03-21 04:51:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-03-21 04:51:00 -0500
commit282966fc4e1a2858d3354a2a8b5faf99fb763647 (patch)
tree1b4debbf0015191f41d519f894df3f67169f5e56 /pkgs/development/tools/cue
parent33454dafa225bb5ca0b9ef66770fd1ae4f68115f (diff)
downloadnixpkgs-282966fc4e1a2858d3354a2a8b5faf99fb763647.tar
nixpkgs-282966fc4e1a2858d3354a2a8b5faf99fb763647.tar.gz
nixpkgs-282966fc4e1a2858d3354a2a8b5faf99fb763647.tar.bz2
nixpkgs-282966fc4e1a2858d3354a2a8b5faf99fb763647.tar.lz
nixpkgs-282966fc4e1a2858d3354a2a8b5faf99fb763647.tar.xz
nixpkgs-282966fc4e1a2858d3354a2a8b5faf99fb763647.tar.zst
nixpkgs-282966fc4e1a2858d3354a2a8b5faf99fb763647.zip
cue: fix build on darwin
Diffstat (limited to 'pkgs/development/tools/cue')
-rw-r--r--pkgs/development/tools/cue/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/tools/cue/default.nix b/pkgs/development/tools/cue/default.nix
index 98bf5249b62..4950e885e25 100644
--- a/pkgs/development/tools/cue/default.nix
+++ b/pkgs/development/tools/cue/default.nix
@@ -1,4 +1,4 @@
-{ buildGoModule, fetchgit, stdenv }:
+{ buildGoModule, fetchgit, stdenv, Security }:
 
 buildGoModule rec {
   pname = "cue";
@@ -12,6 +12,8 @@ buildGoModule rec {
 
   modSha256 = "04dapx75zwi8cv1pj3c6266znrhwihv3df4izm3gjk34r2i07q6s";
 
+  buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
+
   subPackages = [ "cmd/cue" ];
 
   buildFlagsArray = [