From ebdcef718000dd048e911fa5c38de7f4908277f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Tue, 4 Jul 2023 02:21:54 +0200 Subject: [PATCH] Avoid pointless propagatedBuildInputs It suffices for Perl to be in buildInputs for json-format.pl's hashbang to get fixed up. --- json-rpc-shell-master.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/json-rpc-shell-master.nix b/json-rpc-shell-master.nix index 4aabafa..cb5ccad 100644 --- a/json-rpc-shell-master.nix +++ b/json-rpc-shell-master.nix @@ -18,16 +18,13 @@ pkgs.stdenv.mkDerivation rec { jansson curl libev + perl ] ++ lib.optionals full [ readline ] ++ lib.optionals (!full) [ libedit ]; - propagatedBuildInputs = with pkgs; [ - perl - ]; - src = if local then builtins.path { path = ../${pname}/git;