forked from mirrors/nixpkgs
* We accidentally lost xz support in rpm. This broke RPM builds
(http://hydra.nixos.org/build/2230623). svn path=/nixpkgs/trunk/; revision=32847
This commit is contained in:
parent
6adea06e1c
commit
ed325cd1ae
|
@ -8,13 +8,13 @@ rec {
|
|||
buildPatchelfInVM = runInLinuxVM patchelf;
|
||||
|
||||
|
||||
testRPMImage = makeImageTestScript diskImages.fedora8i386;
|
||||
testRPMImage = makeImageTestScript diskImages.fedora16i386;
|
||||
|
||||
|
||||
buildPatchelfRPM = buildRPM {
|
||||
name = "patchelf-rpm";
|
||||
src = patchelf.src;
|
||||
diskImage = diskImages.fedora13i386;
|
||||
diskImage = diskImages.fedora16x86_64;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, nspr, nss, popt, db4 }:
|
||||
{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, nspr, nss, popt, db4, xz }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rpm-4.7.2";
|
||||
|
@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
|
|||
sha1 = "07b90f653775329ea726ce0005c4c82f56167ca0";
|
||||
};
|
||||
|
||||
buildInputs = [ cpio zlib bzip2 file nspr nss popt db4 ];
|
||||
buildInputs = [ cpio zlib bzip2 file nspr nss popt db4 xz ];
|
||||
|
||||
# Note: we don't add elfutils to buildInputs, since it provides a
|
||||
# bad `ld' and other stuff.
|
||||
|
|
Loading…
Reference in a new issue