Avoid pointless propagatedBuildInputs
It suffices for Perl to be in buildInputs for json-format.pl's hashbang to get fixed up.
This commit is contained in:
parent
6911fffa96
commit
ebdcef7180
|
@ -18,16 +18,13 @@ pkgs.stdenv.mkDerivation rec {
|
||||||
jansson
|
jansson
|
||||||
curl
|
curl
|
||||||
libev
|
libev
|
||||||
|
perl
|
||||||
] ++ lib.optionals full [
|
] ++ lib.optionals full [
|
||||||
readline
|
readline
|
||||||
] ++ lib.optionals (!full) [
|
] ++ lib.optionals (!full) [
|
||||||
libedit
|
libedit
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with pkgs; [
|
|
||||||
perl
|
|
||||||
];
|
|
||||||
|
|
||||||
src = if local then
|
src = if local then
|
||||||
builtins.path {
|
builtins.path {
|
||||||
path = ../${pname}/git;
|
path = ../${pname}/git;
|
||||||
|
|
Loading…
Reference in New Issue