mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
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 {
|
||||
pname = "e2fsprogs";
|
||||
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
|
||||
"--enable-libuuid --disable-e2initrd-helper"
|
||||
];
|
||||
|
||||
checkInputs = [ perl ];
|
||||
checkInputs = [ buildPackages.perl ];
|
||||
doCheck = true;
|
||||
|
||||
postInstall = ''
|
||||
|
Loading…
Reference in New Issue
Block a user