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

43 lines
1.3 KiB
Nix
Raw Normal View History

2021-05-01 06:09:59 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, bzip2, expat, glib, curl, libxml2, python3, rpm
, openssl, sqlite, file, xz, pcre, bash-completion, zstd, zchunk, libmodulemd
}:
2016-04-29 02:40:08 +00:00
stdenv.mkDerivation rec {
pname = "createrepo_c";
2021-05-13 17:34:06 +00:00
version = "0.17.2";
2016-04-29 02:40:08 +00:00
src = fetchFromGitHub {
owner = "rpm-software-management";
repo = "createrepo_c";
2018-11-17 23:11:58 +00:00
rev = version;
2021-05-13 17:34:06 +00:00
sha256 = "sha256-rcrJjcWj+cTAE3k11Ynr7CQCOWD+rb60lcar0G2w06A=";
2016-04-29 02:40:08 +00:00
};
patches = [
2021-05-01 06:09:59 +00:00
# Use the output directory to install the bash completions.
./fix-bash-completion-path.patch
2021-05-01 06:09:59 +00:00
# Use the output directory to install the python modules.
./fix-python-install-path.patch
];
2016-04-29 02:40:08 +00:00
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace '@BASHCOMP_DIR@' "$out/share/bash-completion/completions"
2016-04-29 02:40:08 +00:00
substituteInPlace src/python/CMakeLists.txt \
2018-11-17 23:11:58 +00:00
--replace "@PYTHON_INSTALL_DIR@" "$out/${python3.sitePackages}"
2016-04-29 02:40:08 +00:00
'';
2021-05-01 06:09:59 +00:00
nativeBuildInputs = [ cmake pkg-config rpm ];
2021-05-01 06:09:59 +00:00
buildInputs = [ bzip2 expat glib curl libxml2 python3 openssl sqlite file xz pcre bash-completion zstd zchunk libmodulemd ];
meta = with lib; {
description = "C implementation of createrepo";
2021-05-01 06:09:59 +00:00
homepage = "https://rpm-software-management.github.io/createrepo_c/";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ copumpkin ];
};
2016-04-29 02:40:08 +00:00
}