Merge pull request #50836 from daniels/patch-3
xsv: Add darwin.Security as dependency on MacOS
This commit is contained in:
commit
ed9741790d
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
name = "xsv-${version}";
|
name = "xsv-${version}";
|
||||||
|
@ -13,6 +13,8 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
cargoSha256 = "1qk5wkjm3d4dz5fldlq7rjlm602v0l04hxrbar2j6vhcz9w2r4n6";
|
cargoSha256 = "1qk5wkjm3d4dz5fldlq7rjlm602v0l04hxrbar2j6vhcz9w2r4n6";
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A fast CSV toolkit written in Rust";
|
description = "A fast CSV toolkit written in Rust";
|
||||||
homepage = https://github.com/BurntSushi/xsv;
|
homepage = https://github.com/BurntSushi/xsv;
|
||||||
|
|
|
@ -6330,7 +6330,9 @@ with pkgs;
|
||||||
|
|
||||||
xsel = callPackage ../tools/misc/xsel { };
|
xsel = callPackage ../tools/misc/xsel { };
|
||||||
|
|
||||||
xsv = callPackage ../tools/text/xsv { };
|
xsv = callPackage ../tools/text/xsv {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
xtreemfs = callPackage ../tools/filesystems/xtreemfs {
|
xtreemfs = callPackage ../tools/filesystems/xtreemfs {
|
||||||
boost = boost165;
|
boost = boost165;
|
||||||
|
|
Loading…
Reference in New Issue