about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-03-29 07:33:20 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-03-29 12:37:25 +0100
commit2e74a9b1bf89bb9fc9d61ce120b4570650853f52 (patch)
tree906e87e4a6db33ebc02340c516392b139eb4a6a9 /pkgs/tools/misc
parent8ccfa1e21202bed829a1388b3165d83f7ab17bb5 (diff)
downloadnixlib-2e74a9b1bf89bb9fc9d61ce120b4570650853f52.tar
nixlib-2e74a9b1bf89bb9fc9d61ce120b4570650853f52.tar.gz
nixlib-2e74a9b1bf89bb9fc9d61ce120b4570650853f52.tar.bz2
nixlib-2e74a9b1bf89bb9fc9d61ce120b4570650853f52.tar.lz
nixlib-2e74a9b1bf89bb9fc9d61ce120b4570650853f52.tar.xz
nixlib-2e74a9b1bf89bb9fc9d61ce120b4570650853f52.tar.zst
nixlib-2e74a9b1bf89bb9fc9d61ce120b4570650853f52.zip
vdirsyncer: fix strict deps build
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/vdirsyncer/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix
index 52eec555b165..3ee7787a8a45 100644
--- a/pkgs/tools/misc/vdirsyncer/default.nix
+++ b/pkgs/tools/misc/vdirsyncer/default.nix
@@ -20,7 +20,8 @@ python3Packages.buildPythonApplication rec {
     inherit src;
     sourceRoot = "source/rust";
     cargoSha256 = "0cqy0s55pkg6hww86h7qip4xaidh6g8lcypdj84n2x374jq38c5d";
-    buildInputs = [ pkgconfig openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices Security ];
+    nativeBuildInputs = [ pkgconfig ];
+    buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices Security ];
   };
 
   propagatedBuildInputs = with python3Packages; [