summary refs log tree commit diff
path: root/pkgs/tools/text/xsv
diff options
context:
space:
mode:
authorDaniel Sandbecker <>2018-11-21 20:02:14 +0100
committerDaniel Sandbecker <>2018-11-21 20:02:14 +0100
commitfcac08f565320eca0e6b7112ee986672b34fcfa6 (patch)
treeed3ea6317651928eb22420b82023922c8113266d /pkgs/tools/text/xsv
parentb8fbaebf0805399290253dd7a3dc96c66f6b1776 (diff)
downloadnixpkgs-fcac08f565320eca0e6b7112ee986672b34fcfa6.tar
nixpkgs-fcac08f565320eca0e6b7112ee986672b34fcfa6.tar.gz
nixpkgs-fcac08f565320eca0e6b7112ee986672b34fcfa6.tar.bz2
nixpkgs-fcac08f565320eca0e6b7112ee986672b34fcfa6.tar.lz
nixpkgs-fcac08f565320eca0e6b7112ee986672b34fcfa6.tar.xz
nixpkgs-fcac08f565320eca0e6b7112ee986672b34fcfa6.tar.zst
nixpkgs-fcac08f565320eca0e6b7112ee986672b34fcfa6.zip
xsv: Pass Security framework from all-packages
Diffstat (limited to 'pkgs/tools/text/xsv')
-rw-r--r--pkgs/tools/text/xsv/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/xsv/default.nix b/pkgs/tools/text/xsv/default.nix
index 539ec9bd040..79954b15a82 100644
--- a/pkgs/tools/text/xsv/default.nix
+++ b/pkgs/tools/text/xsv/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, rustPlatform, pkgs }:
+{ stdenv, fetchFromGitHub, rustPlatform, Security }:
 
 rustPlatform.buildRustPackage rec {
   name = "xsv-${version}";
@@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "1qk5wkjm3d4dz5fldlq7rjlm602v0l04hxrbar2j6vhcz9w2r4n6";
 
-  buildInputs = stdenv.lib.optional stdenv.isDarwin pkgs.darwin.Security;
+  buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
 
   meta = with stdenv.lib; {
     description = "A fast CSV toolkit written in Rust";