summaryrefslogtreecommitdiffstats
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)
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 539ec9bd0403..79954b15a82c 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";