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

39 lines
1.2 KiB
Nix
Raw Normal View History

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 {
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";
sha256 = "1w9yynj8mxhw714gvgr0fibfks584b4y0n4vjckcf7y97cpdhjkn";
2016-04-29 04:40:08 +02:00
};
patches = [
./fix-bash-completion-path.patch
./fix-python-install-path.patch
];
2016-04-29 04:40:08 +02: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 \
--replace "@PYTHON_INSTALL_PATH@" "$out/${python2.sitePackages}"
2016-04-29 04:40:08 +02:00
'';
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ bzip2 expat glib curl libxml2 python2 rpm openssl sqlite file xz pcre bash-completion ];
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
}