about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libsolv
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libsolv')
-rw-r--r--nixpkgs/pkgs/development/libraries/libsolv/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libsolv/default.nix b/nixpkgs/pkgs/development/libraries/libsolv/default.nix
new file mode 100644
index 000000000000..2e5eccf5263b
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libsolv/default.nix
@@ -0,0 +1,45 @@
+{ lib, stdenv, fetchFromGitHub, cmake, ninja, pkg-config
+, zlib, xz, bzip2, zchunk, zstd
+, expat
+, withRpm ? !stdenv.isDarwin, rpm
+, db
+}:
+
+stdenv.mkDerivation rec {
+  version  = "0.7.24";
+  pname = "libsolv";
+
+  src = fetchFromGitHub {
+    owner  = "openSUSE";
+    repo   = "libsolv";
+    rev    = version;
+    sha256 = "sha256-UTVnGJO/9mQF9RwK75hh6IkoP1MwAlFaLCtdYU8uS34=";
+  };
+
+  cmakeFlags = [
+    "-DENABLE_COMPLEX_DEPS=true"
+    "-DENABLE_LZMA_COMPRESSION=true"
+    "-DENABLE_BZIP2_COMPRESSION=true"
+    "-DENABLE_ZSTD_COMPRESSION=true"
+    "-DENABLE_ZCHUNK_COMPRESSION=true"
+    "-DWITH_SYSTEM_ZCHUNK=true"
+  ] ++ lib.optionals withRpm [
+    "-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 = "A free package dependency solver";
+    homepage    = "https://github.com/openSUSE/libsolv";
+    license     = licenses.bsd3;
+    platforms   = platforms.linux ++ platforms.darwin;
+    maintainers = with maintainers; [ copumpkin ];
+  };
+}
+