nixpkgs/pkgs/tools/package-management/rpm/default.nix
Eelco Dolstra d869913b27 * RPM updated to 4.7.2.
* nspr updated to 4.8.2.
* nss updated to 3.12.4.
* elfutils updated to 0.143.

svn path=/nixpkgs/trunk/; revision=18867
2009-12-09 22:34:51 +00:00

27 lines
753 B
Nix

{ stdenv, fetchurl, cpio, zlib, bzip2, xz, file, elfutils, nspr, nss, popt, db4 }:
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 xz file nspr nss popt db4 ];
# 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";
};
}