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

43 lines
1.3 KiB
Nix
Raw Normal View History

2021-05-01 09:09:59 +03: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 05:40:08 +03:00
stdenv.mkDerivation rec {
pname = "createrepo_c";
2021-05-01 09:09:59 +03:00
version = "0.17.1";
2016-04-29 05:40:08 +03:00
src = fetchFromGitHub {
owner = "rpm-software-management";
repo = "createrepo_c";
2018-11-18 02:11:58 +03:00
rev = version;
2021-05-01 09:09:59 +03:00
sha256 = "G2xioH9XWntHFmUfTN2s2mdtIqgTTLKr5jZflwpaC8Q=";
2016-04-29 05:40:08 +03:00
};
patches = [
2021-05-01 09:09:59 +03:00
# Use the output directory to install the bash completions.
./fix-bash-completion-path.patch
2021-05-01 09:09:59 +03:00
# Use the output directory to install the python modules.
./fix-python-install-path.patch
];
2016-04-29 05:40:08 +03:00
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace '@BASHCOMP_DIR@' "$out/share/bash-completion/completions"
2016-04-29 05:40:08 +03:00
substituteInPlace src/python/CMakeLists.txt \
2018-11-18 02:11:58 +03:00
--replace "@PYTHON_INSTALL_DIR@" "$out/${python3.sitePackages}"
2016-04-29 05:40:08 +03:00
'';
2021-05-01 09:09:59 +03:00
nativeBuildInputs = [ cmake pkg-config rpm ];
2021-05-01 09:09:59 +03: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 09:09:59 +03:00
homepage = "https://rpm-software-management.github.io/createrepo_c/";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ copumpkin ];
};
2016-04-29 05:40:08 +03:00
}