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

83 lines
2.7 KiB
Nix
Raw Normal View History

2020-12-18 00:26:51 +00:00
{ stdenv, lib, fetchpatch
, pkg-config, autoreconfHook
2020-12-18 00:26:51 +00:00
, fetchurl, cpio, zlib, bzip2, file, elfutils, libbfd, libgcrypt, libarchive, nspr, nss, popt, db, xz, python, lua, llvmPackages
2021-01-24 18:23:16 +00:00
, sqlite, zstd
}:
stdenv.mkDerivation rec {
pname = "rpm";
2020-12-18 00:26:51 +00:00
version = "4.16.1.2";
src = fetchurl {
url = "http://ftp.rpm.org/releases/rpm-${lib.versions.majorMinor version}.x/rpm-${version}.tar.bz2";
2020-12-18 00:26:51 +00:00
sha256 = "1k6ank2aad7r503w12m6m494mxr6iccj52wqhwbc94pwxsf34mw3";
};
outputs = [ "out" "dev" "man" ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2021-01-24 18:23:16 +00:00
buildInputs = [ cpio zlib zstd bzip2 file libarchive libgcrypt nspr nss db xz python lua sqlite ]
++ lib.optionals stdenv.cc.isClang [ llvmPackages.openmp ];
# rpm/rpmlib.h includes popt.h, and then the pkg-config file mentions these as linkage requirements
2018-02-18 19:19:52 +00:00
propagatedBuildInputs = [ popt nss db bzip2 libarchive libbfd ]
2021-01-15 09:19:50 +00:00
++ lib.optional stdenv.isLinux elfutils;
NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss";
2016-09-19 12:38:28 +00:00
configureFlags = [
"--with-external-db"
"--with-lua"
"--enable-python"
2020-12-18 00:26:51 +00:00
"--enable-ndb"
"--enable-sqlite"
2021-01-24 18:23:16 +00:00
"--enable-zstd"
2016-09-19 12:38:28 +00:00
"--localstatedir=/var"
"--sharedstatedir=/com"
];
2020-12-18 00:26:51 +00:00
# Small fixes for ndb on darwin
# https://github.com/rpm-software-management/rpm/pull/1465
patches = [
(fetchpatch {
name = "darwin-support.patch";
url = "https://github.com/rpm-software-management/rpm/commit/2d20e371d5e38f4171235e5c64068cad30bda557.patch";
sha256 = "0p3j5q5a4hl357maf7018k3826jhcpqg6wfrnccrkv30g0ayk171";
})
];
2020-12-18 00:26:51 +00:00
postPatch = ''
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 08:23:24 +00:00
2020-01-18 20:59:30 +00:00
# Avoid helper scripts pointing to absolute paths
for tool in find-provides find-requires; do
sed -i $out/lib/rpm/$tool -e "s#/usr/lib/rpm/#$out/lib/rpm/#"
done
2017-04-15 08:23:24 +00:00
# symlinks produced by build are incorrect
ln -sf $out/bin/{rpm,rpmquery}
ln -sf $out/bin/{rpm,rpmverify}
'';
meta = with lib; {
homepage = "http://www.rpm.org/";
2014-02-15 20:53:13 +00:00
license = licenses.gpl2;
description = "The RPM Package Manager";
maintainers = with maintainers; [ copumpkin ];
2018-02-18 19:19:52 +00:00
platforms = platforms.linux ++ platforms.darwin;
};
}