Merge pull request #124872 from devins2518/bunnyfetch
bunnyfetch: init at unstable-2021-05-24
This commit is contained in:
commit
1e10a150da
3 changed files with 36 additions and 0 deletions
|
@ -2415,6 +2415,12 @@
|
|||
githubId = 896182;
|
||||
name = "devhell";
|
||||
};
|
||||
devins2518 = {
|
||||
email = "drsingh2518@icloud.com";
|
||||
github = "devins2518";
|
||||
githubId = 17111639;
|
||||
name = "Devin Singh";
|
||||
};
|
||||
dezgeg = {
|
||||
email = "tuomas.tynkkynen@iki.fi";
|
||||
github = "dezgeg";
|
||||
|
|
28
pkgs/tools/misc/bunnyfetch/default.nix
Normal file
28
pkgs/tools/misc/bunnyfetch/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "bunnyfetch";
|
||||
version = "unstable-2021-05-24";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Mewyuna";
|
||||
repo = pname;
|
||||
rev = "7bcc45fb590b37f410e60af893e679eb0729ecb1";
|
||||
sha256 = "1lgqrwmxdxd1d99rr0akydfwcsbcmz75fkbq9zrl842rksnp5q3r";
|
||||
};
|
||||
|
||||
vendorSha256 = "1vv69y0x06kn99lw995sbkb7vgd0yb18flkr2ml8ss7q2yvz37vi";
|
||||
|
||||
# No upstream tests
|
||||
doCheck = false;
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tiny system info fetch utility";
|
||||
homepage = "https://github.com/Mewyuna/bunnyfetch";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ devins2518 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -31631,6 +31631,8 @@ in
|
|||
|
||||
kodelife = callPackage ../applications/graphics/kodelife {};
|
||||
|
||||
bunnyfetch = callPackage ../tools/misc/bunnyfetch {};
|
||||
|
||||
_3proxy = callPackage ../applications/networking/3proxy {};
|
||||
|
||||
pigeon = callPackage ../development/tools/pigeon {};
|
||||
|
|
Loading…
Reference in a new issue