drush: fix buildInputs / nativeBuildInputs
`makeWrapper` is a nativeBuildInput, and `php` and `which` are actually only needed when constructing the wrapper, but no `buildInputs`.
This commit is contained in:
parent
e7d2655efb
commit
3b3e2c080f
|
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "07gbjd7m1fj5dmavr0z20vkqwx1cz2522sj9022p257jifj1yl76";
|
sha256 = "07gbjd7m1fj5dmavr0z20vkqwx1cz2522sj9022p257jifj1yl76";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ php which makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
# install libraries
|
# install libraries
|
||||||
|
|
Loading…
Reference in New Issue