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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, cmake
, gettext
, pkg-config
, libsolv
, openssl
, check
, json_c
, libmodulemd
, libsmartcols
, sqlite
, librepo
, libyaml
, rpm
, zchunk
}:
2020-12-22 23:48:49 +00:00
2021-09-19 16:43:18 +01:00
stdenv.mkDerivation rec {
2020-12-22 23:48:49 +00:00
pname = "libdnf";
2023-10-29 05:56:27 +00:00
version = "0.72.0";
2020-12-22 23:48:49 +00:00
src = fetchFromGitHub {
owner = "rpm-software-management";
repo = pname;
rev = "refs/tags/${version}";
2023-10-29 05:56:27 +00:00
hash = "sha256-Ou7cXJz4g8cx2KjeX+IFRA2m158PGKcb9jCXFuAOKqU=";
2020-12-22 23:48:49 +00:00
};
nativeBuildInputs = [
cmake
gettext
pkg-config
];
buildInputs = [
check
openssl
json_c
libsmartcols
libyaml
libmodulemd
2021-08-13 14:26:52 +01:00
zchunk
2020-12-22 23:48:49 +00:00
];
propagatedBuildInputs = [
sqlite
libsolv
librepo
rpm
];
# See https://github.com/NixOS/nixpkgs/issues/107430
prePatch = ''
cp ${libsolv}/share/cmake/Modules/FindLibSolv.cmake cmake/modules/
'';
postPatch = ''
2022-05-17 12:24:27 +01:00
# See https://github.com/NixOS/nixpkgs/issues/107428
2020-12-22 23:48:49 +00:00
substituteInPlace CMakeLists.txt \
--replace "enable_testing()" "" \
--replace "add_subdirectory(tests)" ""
2022-05-17 12:24:27 +01:00
# https://github.com/rpm-software-management/libdnf/issues/1518
substituteInPlace libdnf/libdnf.pc.in \
--replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
2020-12-22 23:48:49 +00:00
'';
cmakeFlags = [
"-DWITH_GTKDOC=OFF"
"-DWITH_HTML=OFF"
"-DWITH_BINDINGS=OFF"
];
meta = with lib; {
description = "Package management library";
2020-12-22 23:48:49 +00:00
homepage = "https://github.com/rpm-software-management/libdnf";
changelog = "https://github.com/rpm-software-management/libdnf/releases/tag/${version}";
2020-12-22 23:48:49 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ rb2k ];
};
}