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 {
|
2016-09-28 02:06:42 +01:00
|
|
|
name = "rpm-4.13.0-rc1";
|
2007-03-21 19:25:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-09-28 02:06:42 +01:00
|
|
|
url = "http://www.rpm.org/releases/testing/rpm-4.13.0-rc1.tar.bz2";
|
|
|
|
sha256 = "097mc0kkrf09c01hrgi71df7maahmvayfgsvspnxigvl3xysv8hp";
|
2007-03-21 19:25:58 +00:00
|
|
|
};
|
|
|
|
|
2016-09-19 13:38:59 +01:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
|
|
|
|
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
|
|
|
'';
|
|
|
|
|
2016-09-19 13:38:59 +01:00
|
|
|
preFixup = ''
|
|
|
|
# Don't keep a reference to RPM headers or manpages
|
|
|
|
for f in $out/lib/rpm/platform/*/macros; do
|
|
|
|
substituteInPlace $f --replace "$dev" "/rpm-dev-path-was-here"
|
|
|
|
substituteInPlace $f --replace "$man" "/rpm-man-path-was-here"
|
|
|
|
done
|
|
|
|
|
|
|
|
# Avoid macros like '%__ld' pointing to absolute paths
|
|
|
|
for tool in ld nm objcopy objdump strip; do
|
|
|
|
sed -i $out/lib/rpm/macros -e "s/^%__$tool.*/%__$tool $tool/"
|
|
|
|
done
|
|
|
|
'';
|
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
|
|
|
}
|