2020-02-08 01:33:05 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, python
|
|
|
|
, pkgconfig
|
|
|
|
, libxml2
|
|
|
|
, glib
|
|
|
|
, openssl
|
|
|
|
, curl
|
|
|
|
, check
|
|
|
|
, gpgme
|
|
|
|
}:
|
2016-04-29 03:46:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-17 20:35:33 +00:00
|
|
|
version = "1.9.2";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "librepo";
|
2016-04-29 03:46:16 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-02-08 01:33:05 +00:00
|
|
|
owner = "rpm-software-management";
|
|
|
|
repo = "librepo";
|
|
|
|
rev = version;
|
2018-11-17 20:35:33 +00:00
|
|
|
sha256 = "0xa9ng9mhpianhjy2a0jnj8ha1zckk2sz91y910daggm1qcv5asx";
|
2016-04-29 03:46:16 +01:00
|
|
|
};
|
|
|
|
|
2020-02-08 01:33:05 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
|
|
|
];
|
2017-06-20 04:27:48 +01:00
|
|
|
|
2020-02-08 01:33:05 +00:00
|
|
|
buildInputs = [
|
|
|
|
python
|
|
|
|
libxml2
|
|
|
|
glib
|
|
|
|
openssl
|
|
|
|
curl
|
|
|
|
check
|
|
|
|
gpgme
|
|
|
|
];
|
2016-04-29 03:46:16 +01:00
|
|
|
|
|
|
|
# librepo/fastestmirror.h includes curl/curl.h, and pkg-config specfile refers to others in here
|
2020-02-08 01:33:05 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
curl
|
|
|
|
gpgme
|
|
|
|
libxml2
|
|
|
|
];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DPYTHON_DESIRED=${stdenv.lib.substring 0 1 python.pythonVersion}"
|
|
|
|
];
|
2016-04-30 17:01:26 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library providing C and Python (libcURL like) API for downloading linux repository metadata and packages";
|
2020-02-08 01:33:05 +00:00
|
|
|
homepage = "https://rpm-software-management.github.io/librepo/";
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-04-30 17:01:26 +01:00
|
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
|
|
};
|
2016-04-29 03:46:16 +01:00
|
|
|
}
|