aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/networking/httplz
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-03-29 07:22:38 +0000
committerJörg Thalheim <joerg@thalheim.io>2020-03-29 12:37:24 +0100
commit649eecd6319b53b213edf92c1f2785f1db89c3cf (patch)
tree97646c7dd1dc7ef6a8c532db41afdcfc09c84a25 /pkgs/tools/networking/httplz
parent22fe76d27db30c0a6017395ef0370d94272da02a (diff)
httplz: fix strict deps build
Diffstat (limited to 'pkgs/tools/networking/httplz')
-rw-r--r--pkgs/tools/networking/httplz/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/tools/networking/httplz/default.nix b/pkgs/tools/networking/httplz/default.nix
index 5d59010ac1ef..c4f003f884fc 100644
--- a/pkgs/tools/networking/httplz/default.nix
+++ b/pkgs/tools/networking/httplz/default.nix
@@ -12,10 +12,8 @@ rustPlatform.buildRustPackage rec {
sha256 = "0i41hqig8v6w1qb6498239iix1rss0lznm5lcl9m3i439c2zv7pw";
};
- nativeBuildInputs = [ makeWrapper ];
- buildInputs = [
- openssl pkgconfig
- ] ++ lib.optionals stdenv.isDarwin [
+ nativeBuildInputs = [ makeWrapper pkgconfig ];
+ buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
libiconv darwin.apple_sdk.frameworks.Security
];