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 {
|
2019-08-15 15:41:18 +03:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2017-03-19 13:07:07 +03:00
|
|
|
patches = [
|
2021-05-01 09:09:59 +03:00
|
|
|
# Use the output directory to install the bash completions.
|
2017-03-19 13:07:07 +03:00
|
|
|
./fix-bash-completion-path.patch
|
2021-05-01 09:09:59 +03:00
|
|
|
# Use the output directory to install the python modules.
|
2017-03-19 13:07:07 +03:00
|
|
|
./fix-python-install-path.patch
|
|
|
|
];
|
2016-04-29 05:40:08 +03:00
|
|
|
|
2017-03-19 13:07:07 +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 ];
|
2017-03-19 13:07:07 +03:00
|
|
|
|
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 ];
|
2016-04-30 05:15:04 +03:00
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2016-04-30 05:15:04 +03:00
|
|
|
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;
|
2016-04-30 05:15:04 +03:00
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
};
|
2016-04-29 05:40:08 +03:00
|
|
|
}
|
|
|
|
|