2016-11-09 11:25:42 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, bzip2, expat, glib, curl, libxml2, python2, rpm, openssl, sqlite, file, xz, pcre, bash-completion }:
|
2016-04-29 04:40:08 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-04 20:52:38 +02:00
|
|
|
rev = "0.11.0";
|
2016-04-29 04:40:08 +02:00
|
|
|
name = "createrepo_c-${rev}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "rpm-software-management";
|
|
|
|
repo = "createrepo_c";
|
2018-07-04 20:52:38 +02:00
|
|
|
sha256 = "1w9yynj8mxhw714gvgr0fibfks584b4y0n4vjckcf7y97cpdhjkn";
|
2016-04-29 04:40:08 +02:00
|
|
|
};
|
|
|
|
|
2017-03-19 11:07:07 +01:00
|
|
|
patches = [
|
|
|
|
./fix-bash-completion-path.patch
|
|
|
|
./fix-python-install-path.patch
|
|
|
|
];
|
2016-04-29 04:40:08 +02:00
|
|
|
|
2017-03-19 11:07:07 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace CMakeLists.txt \
|
|
|
|
--replace '@BASHCOMP_DIR@' "$out/share/bash-completion/completions"
|
2016-04-29 04:40:08 +02:00
|
|
|
substituteInPlace src/python/CMakeLists.txt \
|
2017-03-19 11:07:07 +01:00
|
|
|
--replace "@PYTHON_INSTALL_PATH@" "$out/${python2.sitePackages}"
|
2016-04-29 04:40:08 +02:00
|
|
|
'';
|
|
|
|
|
2017-03-19 11:07:07 +01:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ bzip2 expat glib curl libxml2 python2 rpm openssl sqlite file xz pcre bash-completion ];
|
2016-04-30 04:15:04 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "C implementation of createrepo";
|
|
|
|
homepage = "http://rpm-software-management.github.io/createrepo_c/";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
};
|
2016-04-29 04:40:08 +02:00
|
|
|
}
|
|
|
|
|