chromium: Add "which" to build dependencies.
This is needed by a lot of scripts within chromium, so we're not going to patch them using type, which is shell-specific anyway.
This commit is contained in:
parent
ef45195126
commit
6350706c0d
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, fetchsvn, makeWrapper
|
{ stdenv, fetchurl, fetchsvn, makeWrapper, which
|
||||||
, python, perl, pkgconfig
|
, python, perl, pkgconfig
|
||||||
, nspr, nss, udev, bzip2
|
, nspr, nss, udev, bzip2
|
||||||
, utillinux, alsaLib
|
, utillinux, alsaLib
|
||||||
|
@ -35,7 +35,7 @@ in stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
makeWrapper
|
which makeWrapper
|
||||||
python perl pkgconfig
|
python perl pkgconfig
|
||||||
nspr nss udev bzip2
|
nspr nss udev bzip2
|
||||||
utillinux alsaLib
|
utillinux alsaLib
|
||||||
|
|
Loading…
Reference in New Issue