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:
Will Dietz 2019-03-15 07:04:28 -05:00 committed by GitHub
commit 85966e628d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo, perl }:
{ stdenv, buildPackages, fetchurl, fetchpatch, pkgconfig, libuuid, gettext, texinfo }:
stdenv.mkDerivation rec {
pname = "e2fsprogs";
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
"--enable-libuuid --disable-e2initrd-helper"
];
checkInputs = [ perl ];
checkInputs = [ buildPackages.perl ];
doCheck = true;
postInstall = ''