Merge pull request #57645 from dtzWill/fix/e2fsprogs-cross-llvm-bootstrap
e2fsprogs: use buildPackages.perl to avoid cycle in llvm-based stdenv
This commit is contained in:
commit
85966e628d
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo, perl }:
|
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "e2fsprogs";
|
pname = "e2fsprogs";
|
||||||
|
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||||
"--enable-libuuid --disable-e2initrd-helper"
|
"--enable-libuuid --disable-e2initrd-helper"
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [ perl ];
|
checkInputs = [ buildPackages.perl ];
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in New Issue