depot/third_party/nixpkgs/pkgs/tools/package-management/librepo/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

77 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
python,
pkg-config,
libxml2,
glib,
openssl,
zchunk,
curl,
check,
gpgme,
libselinux,
nix-update-script,
doxygen,
}:
stdenv.mkDerivation rec {
version = "1.18.1";
pname = "librepo";
outputs = [
"out"
"dev"
"py"
];
src = fetchFromGitHub {
owner = "rpm-software-management";
repo = "librepo";
rev = version;
sha256 = "sha256-b5f6zfQu5GQ9bZPnWgmLZLH0YFFLQu7bHwMQUt4Q4Q8=";
};
nativeBuildInputs = [
cmake
pkg-config
doxygen
];
buildInputs = [
python
libxml2
glib
openssl
curl
check
gpgme
zchunk
libselinux
];
# librepo/fastestmirror.h includes curl/curl.h, and pkg-config specfile refers to others in here
propagatedBuildInputs = [
curl
gpgme
libxml2
];
cmakeFlags = [ "-DPYTHON_DESIRED=${lib.substring 0 1 python.pythonVersion}" ];
postFixup = ''
moveToOutput "lib/${python.libPrefix}" "$py"
'';
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Library providing C and Python (libcURL like) API for downloading linux repository metadata and packages";
homepage = "https://rpm-software-management.github.io/librepo/";
license = licenses.lgpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ copumpkin ];
};
}