depot/pkgs/tools/package-management/librepo/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00: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 ];
};
}