bunny: init at 1.1 (#45714)
* bunny: init at 1.1 Motivation for this change Pretty useful not to have to think about what system you're on when doing basic (un)installation tasks. * Fixed typo
This commit is contained in:
parent
7d23ffb736
commit
42bfaab927
@ -832,6 +832,11 @@
|
||||
github = "couchemar";
|
||||
name = "Andrey Pavlov";
|
||||
};
|
||||
countingsort = {
|
||||
email = "niclas@countingsort.com";
|
||||
github = "countingsort";
|
||||
name = "Niclas Meyer";
|
||||
};
|
||||
cpages = {
|
||||
email = "page@ruiec.cat";
|
||||
github = "cpages";
|
||||
|
25
pkgs/tools/package-management/bunny/default.nix
Normal file
25
pkgs/tools/package-management/bunny/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitLab }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bunny-${version}";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "tim241";
|
||||
repo = "bunny";
|
||||
rev = version;
|
||||
sha256 = "0mxhj23fscbyqb9hfpmimgjn6nbx1lx3dl2msgwdy281zs25w8ki";
|
||||
};
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
makeFlags = [ "prefix=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A simple shell script wrapper around multiple package managers";
|
||||
homepage = https://gitlab.com/tim241/bunny;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ countingsort ];
|
||||
};
|
||||
}
|
@ -635,6 +635,8 @@ with pkgs;
|
||||
|
||||
bonfire = callPackage ../tools/misc/bonfire { };
|
||||
|
||||
bunny = callPackage ../tools/package-management/bunny { };
|
||||
|
||||
cloud-sql-proxy = callPackage ../tools/misc/cloud-sql-proxy { };
|
||||
|
||||
container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { };
|
||||
|
Loading…
Reference in New Issue
Block a user