nixpkgs/pkgs/tools/package-management/rpm/default.nix

66 lines
2.1 KiB
Nix
Raw Normal View History

{ stdenv
, pkgconfig, autoreconfHook
, fetchurl, cpio, zlib, bzip2, file, elfutils, libbfd, libarchive, nspr, nss, popt, db, xz, python, lua
}:
stdenv.mkDerivation rec {
2017-04-15 10:18:04 +02:00
name = "rpm-${version}";
2018-03-16 11:08:46 +01:00
version = "4.14.1";
src = fetchurl {
2017-11-02 19:07:38 +01:00
url = "http://ftp.rpm.org/releases/rpm-4.14.x/rpm-${version}.tar.bz2";
2018-03-16 11:08:46 +01:00
sha256 = "0fvrjq6jsvbllb5q6blchzh7p5flk61rz34g4g9mp9iwrhn0xx23";
};
outputs = [ "out" "dev" "man" ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ cpio zlib bzip2 file libarchive nspr nss db xz python lua ];
# rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements
2018-02-18 20:19:52 +01:00
propagatedBuildInputs = [ popt nss db bzip2 libarchive libbfd ]
++ stdenv.lib.optional stdenv.isLinux elfutils;
NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss";
2016-09-19 14:38:28 +02:00
configureFlags = [
"--with-external-db"
"--with-lua"
"--enable-python"
"--localstatedir=/var"
"--sharedstatedir=/com"
];
postPatch = ''
# For Python3, the original expression evaluates as 'python3.4' but we want 'python3.4m' here
substituteInPlace configure.ac --replace 'python''${PYTHON_VERSION}' ${python.executable}
substituteInPlace Makefile.am --replace '@$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp' ""
'';
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
2017-04-15 10:23:24 +02:00
# symlinks produced by build are incorrect
ln -sf $out/bin/{rpm,rpmquery}
ln -sf $out/bin/{rpm,rpmverify}
'';
2014-02-15 21:53:13 +01:00
meta = with stdenv.lib; {
homepage = http://www.rpm.org/;
2014-02-15 21:53:13 +01:00
license = licenses.gpl2;
description = "The RPM Package Manager";
maintainers = with maintainers; [ copumpkin ];
2018-02-18 20:19:52 +01:00
platforms = platforms.linux ++ platforms.darwin;
};
}