microdnf: init at 3.6.0
This commit is contained in:
parent
dd5ffa7b94
commit
638eefae70
24
pkgs/tools/package-management/microdnf/default.nix
Normal file
24
pkgs/tools/package-management/microdnf/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, gettext, libdnf, pkg-config, glib, libpeas, libsmartcols, help2man }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "microdnf";
|
||||||
|
version = "3.6.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rpm-software-management";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0a7lc3qsnblvznzsz3544l3n84184xi85zf7c3m3jhnmpmxsg39h";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config cmake gettext help2man ];
|
||||||
|
buildInputs = [ libdnf glib libpeas libsmartcols ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Lightweight implementation of dnf in C";
|
||||||
|
homepage = "https://github.com/rpm-software-management/microdnf";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ rb2k ];
|
||||||
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
|
};
|
||||||
|
}
|
@ -5741,6 +5741,8 @@ in
|
|||||||
|
|
||||||
mgba = libsForQt5.callPackage ../misc/emulators/mgba { };
|
mgba = libsForQt5.callPackage ../misc/emulators/mgba { };
|
||||||
|
|
||||||
|
microdnf = callPackage ../tools/package-management/microdnf { };
|
||||||
|
|
||||||
microserver = callPackage ../servers/microserver { };
|
microserver = callPackage ../servers/microserver { };
|
||||||
|
|
||||||
midisheetmusic = callPackage ../applications/audio/midisheetmusic { };
|
midisheetmusic = callPackage ../applications/audio/midisheetmusic { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user