25 lines
766 B
Nix
25 lines
766 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, gettext, libdnf, pkg-config, glib, libpeas, libsmartcols, help2man }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "microdnf";
|
|
version = "3.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rpm-software-management";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-/6yMHjB9HNEEQuAc8zEvmjjl6wur0jByS1hLz39+rHI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake gettext help2man ];
|
|
buildInputs = [ libdnf glib libpeas libsmartcols ];
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight implementation of dnf in C";
|
|
homepage = "https://github.com/rpm-software-management/microdnf";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ rb2k ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|