nixpkgs/pkgs/tools/package-management/rpm/default.nix
Peter Simons e198f4b237 Revert "Update RPM to 4.10.0."
Commit e29c284926c2ba3b239c4ee3aaa21aa9396f046a breaks some builds, i.e.
<http://hydra.nixos.org/build/2890636>.
2012-07-24 21:57:18 +02:00

27 lines
753 B
Nix

{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, nspr, nss, popt, db4, xz }:
stdenv.mkDerivation rec {
name = "rpm-4.7.2";
src = fetchurl {
url = "http://rpm.org/releases/rpm-4.7.x/${name}.tar.bz2";
sha1 = "07b90f653775329ea726ce0005c4c82f56167ca0";
};
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.
NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${elfutils}/include";
NIX_CFLAGS_LINK = "-L${elfutils}/lib";
configureFlags = "--with-external-db --without-lua";
meta = {
homepage = http://www.rpm.org/;
license = "GPLv2";
description = "The RPM Package Manager";
};
}