3
0
Fork 0
forked from mirrors/nixpkgs

librepo: init at 1.7.18

This commit is contained in:
Dan Peebles 2016-04-29 02:46:16 +00:00
parent bd8a1258bf
commit fcf37351bd
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, cmake, python, pkgconfig, expat, glib, pcre, openssl, curl, check, attr, gpgme }:
stdenv.mkDerivation rec {
version = "1.7.18";
name = "librepo-${version}";
src = fetchFromGitHub {
owner = "rpm-software-management";
repo = "librepo";
rev = name;
sha256 = "05iqx2kvfqsskb2r3n5p8f91i4gd4pbw6nh30pn532mgab64cvxk";
};
patchPhase = ''
substituteInPlace librepo/python/python2/CMakeLists.txt \
--replace ' ''${PYTHON_INSTALL_DIR}' " $out/lib/python2.7/site-packages"
'';
buildInputs = [ cmake python pkgconfig expat glib pcre openssl curl check attr gpgme ];
# librepo/fastestmirror.h includes curl/curl.h, and pkg-config specfile refers to others in here
propagatedBuildInputs = [ curl gpgme expat ];
}

View file

@ -7726,6 +7726,8 @@ in
librelp = callPackage ../development/libraries/librelp { };
librepo = callPackage ../tools/package-management/librepo { };
libresample = callPackage ../development/libraries/libresample {};
librevenge = callPackage ../development/libraries/librevenge {};