bce69c9cec
python3 support is experimental. Let's wait with changing.
32 lines
1.0 KiB
Nix
32 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, python2, 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 python2 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 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library providing C and Python (libcURL like) API for downloading linux repository metadata and packages";
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
};
|
|
}
|
|
|