nixpkgs/pkgs/by-name/li/libsolv/package.nix
2025-06-04 00:37:17 +00:00

72 lines
1.3 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
ninja,
pkg-config,
zlib,
xz,
bzip2,
zchunk,
zstd,
expat,
withRpm ? !stdenv.hostPlatform.isDarwin,
rpm,
db,
withConda ? true,
}:
stdenv.mkDerivation rec {
version = "0.7.33";
pname = "libsolv";
src = fetchFromGitHub {
owner = "openSUSE";
repo = "libsolv";
rev = version;
hash = "sha256-jOYz0p5oWMnPtQbpkCIUgw6e0W5PfR6teA9IdjYSghk=";
};
cmakeFlags =
[
"-DENABLE_COMPLEX_DEPS=true"
(lib.cmakeBool "ENABLE_CONDA" withConda)
"-DENABLE_LZMA_COMPRESSION=true"
"-DENABLE_BZIP2_COMPRESSION=true"
"-DENABLE_ZSTD_COMPRESSION=true"
"-DENABLE_ZCHUNK_COMPRESSION=true"
"-DWITH_SYSTEM_ZCHUNK=true"
]
++ lib.optionals withRpm [
"-DENABLE_COMPS=true"
"-DENABLE_PUBKEY=true"
"-DENABLE_RPMDB=true"
"-DENABLE_RPMDB_BYRPMHEADER=true"
"-DENABLE_RPMMD=true"
];
nativeBuildInputs = [
cmake
ninja
pkg-config
];
buildInputs = [
zlib
xz
bzip2
zchunk
zstd
expat
db
] ++ lib.optional withRpm rpm;
meta = with lib; {
description = "Free package dependency solver";
homepage = "https://github.com/openSUSE/libsolv";
license = licenses.bsd3;
platforms = platforms.linux ++ platforms.darwin;
maintainers = [ ];
};
}