2021-09-19 14:06:27 +00:00
|
|
|
{ stdenv, lib
|
2021-01-17 09:17:16 +00:00
|
|
|
, 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
|
2022-09-29 06:53:44 +00:00
|
|
|
, sqlite, zstd, libcap
|
2017-10-10 23:01:42 +00:00
|
|
|
}:
|
2007-03-21 19:25:58 +00:00
|
|
|
|
2009-12-09 22:34:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "rpm";
|
2022-09-29 06:53:44 +00:00
|
|
|
version = "4.18.0";
|
2007-03-21 19:25:58 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-08-23 00:30:49 +00:00
|
|
|
url = "https://ftp.osuosl.org/pub/rpm/releases/rpm-${lib.versions.majorMinor version}.x/rpm-${version}.tar.bz2";
|
2022-09-29 06:53:44 +00:00
|
|
|
hash = "sha256-KhcVLXGHqzDt8sL7WGRjvfY4jee1g3SAlVZZ5ekFRVQ=";
|
2007-03-21 19:25:58 +00:00
|
|
|
};
|
|
|
|
|
2016-09-19 12:38:59 +00:00
|
|
|
outputs = [ "out" "dev" "man" ];
|
2021-12-22 21:33:11 +00:00
|
|
|
separateDebugInfo = true;
|
2016-09-19 12:38:59 +00:00
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
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 ]
|
2022-07-15 23:22:28 +00:00
|
|
|
++ lib.optional stdenv.cc.isClang llvmPackages.openmp
|
|
|
|
++ lib.optional stdenv.isLinux libcap;
|
2016-04-29 02:29:02 +00:00
|
|
|
|
|
|
|
# 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;
|
2009-12-09 22:34:51 +00:00
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss";
|
2015-03-20 15:52:02 +00:00
|
|
|
|
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"
|
2022-07-15 23:22:28 +00:00
|
|
|
] ++ lib.optional stdenv.isLinux "--with-cap";
|
2016-09-19 12:38:28 +00:00
|
|
|
|
2020-12-18 00:26:51 +00:00
|
|
|
postPatch = ''
|
2016-05-01 18:08:58 +00:00
|
|
|
substituteInPlace Makefile.am --replace '@$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp' ""
|
2015-09-27 04:02:10 +00:00
|
|
|
'';
|
|
|
|
|
2016-09-19 12:38:59 +00: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
|
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}
|
2016-09-19 12:38:59 +00:00
|
|
|
'';
|
2007-03-21 19:25:58 +00:00
|
|
|
|
2021-12-22 21:35:40 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-03-27 14:42:05 +00:00
|
|
|
homepage = "https://www.rpm.org/";
|
|
|
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
2009-12-09 22:34:51 +00:00
|
|
|
description = "The RPM Package Manager";
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
2022-10-17 04:16:29 +00:00
|
|
|
platforms = platforms.linux;
|
2009-12-09 22:34:51 +00:00
|
|
|
};
|
2007-03-21 19:25:58 +00:00
|
|
|
}
|