2016-05-01 19:08:58 +01:00
|
|
|
{ stdenv, fetchurl, cpio, zlib, bzip2, file, elfutils, libarchive, nspr, nss, popt, db, xz, python, lua, pkgconfig, autoreconfHook }:
|
2007-03-21 19:25:58 +00:00
|
|
|
|
2009-12-09 22:34:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-27 05:13:36 +01:00
|
|
|
name = "rpm-4.12.0";
|
2007-03-21 19:25:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-09-27 05:13:36 +01:00
|
|
|
url = "http://rpm.org/releases/rpm-4.12.x/${name}.tar.bz2";
|
|
|
|
sha256 = "18hk47hc755nslvb7xkq4jb095z7va0nlcyxdpxayc4lmb8mq3bp";
|
2007-03-21 19:25:58 +00:00
|
|
|
};
|
|
|
|
|
2016-05-01 19:08:58 +01:00
|
|
|
buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua pkgconfig autoreconfHook ];
|
2016-04-29 03:29:02 +01:00
|
|
|
|
|
|
|
# rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements
|
2016-08-24 20:23:42 +01:00
|
|
|
propagatedBuildInputs = [ popt elfutils nss db bzip2 libarchive ];
|
2009-12-09 22:34:51 +00:00
|
|
|
|
2016-08-24 20:23:42 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss";
|
2015-03-20 15:52:02 +00:00
|
|
|
|
2016-09-19 13:38:28 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-external-db"
|
|
|
|
"--with-lua"
|
|
|
|
"--enable-python"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sharedstatedir=/com"
|
|
|
|
];
|
|
|
|
|
2015-09-27 05:02:10 +01:00
|
|
|
postPatch = ''
|
|
|
|
# For Python3, the original expression evaluates as 'python3.4' but we want 'python3.4m' here
|
2016-05-07 15:50:51 +01:00
|
|
|
substituteInPlace configure.ac --replace 'python''${PYTHON_VERSION}' ${python.executable}
|
2016-05-01 19:08:58 +01:00
|
|
|
|
|
|
|
substituteInPlace Makefile.am --replace '@$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp' ""
|
2015-09-27 05:02:10 +01:00
|
|
|
'';
|
|
|
|
|
2007-03-21 19:25:58 +00:00
|
|
|
|
2014-02-15 20:53:13 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-12-09 22:34:51 +00:00
|
|
|
homepage = http://www.rpm.org/;
|
2014-02-15 20:53:13 +00:00
|
|
|
license = licenses.gpl2;
|
2009-12-09 22:34:51 +00:00
|
|
|
description = "The RPM Package Manager";
|
2016-04-30 03:07:50 +01:00
|
|
|
maintainers = with maintainers; [ mornfall copumpkin ];
|
2015-03-20 15:52:02 +00:00
|
|
|
platforms = platforms.linux;
|
2009-12-09 22:34:51 +00:00
|
|
|
};
|
2007-03-21 19:25:58 +00:00
|
|
|
}
|