mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
librepo: init at 1.7.18
This commit is contained in:
parent
bd8a1258bf
commit
fcf37351bd
24
pkgs/tools/package-management/librepo/default.nix
Normal file
24
pkgs/tools/package-management/librepo/default.nix
Normal 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 ];
|
||||
}
|
||||
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user