fix .xz in stdenv bootstrap
Presumably needed due to the last staging merge. There was some stdenv stage refactoring within, IIRC.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pcre, libiconv ? null }:
|
||||
{ stdenv, fetchurl, xz, pcre, libiconv ? null }:
|
||||
|
||||
let version = "2.14"; in
|
||||
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
||||
|
||||
#outputs = [ "out" "doc" ]; ToDo
|
||||
|
||||
buildInputs = [ pcre ]
|
||||
buildInputs = [ pcre xz.bin ]
|
||||
++ stdenv.lib.optional (libiconv != null) libiconv;
|
||||
|
||||
patches = [ ./test-localeconv.patch ];
|
||||
|
||||
Reference in New Issue
Block a user