f35ab9c2f8
This also updates a bunch of its dependencies to enable the update, and gets rid of libhif because upstream stopped maintaining it as such, instead using it internally in other projects until they can agree on an interface for it. Nothing seemed to be using libhif so I'm not too concerned about removing it.
26 lines
666 B
Nix
26 lines
666 B
Nix
{ stdenv, fetchFromGitHub, cmake, zlib, expat, rpm, db }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
rev = "0.6.23";
|
|
name = "libsolv-${rev}";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "openSUSE";
|
|
repo = "libsolv";
|
|
sha256 = "08ba7yx0br421lk6zf5mp0yl6nznkmc2vbka20qwm2lx5f0a25xg";
|
|
};
|
|
|
|
cmakeFlags = "-DENABLE_RPMMD=true -DENABLE_RPMDB=true -DENABLE_PUBKEY=true -DENABLE_RPMDB_BYRPMHEADER=true";
|
|
|
|
buildInputs = [ cmake zlib expat rpm db ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A free package dependency solver";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
};
|
|
}
|
|
|