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

31 lines
1.0 KiB
Nix
Raw Normal View History

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