meowfetch: init at 1.0.1 (#536880)
This commit is contained in:
@@ -10169,6 +10169,12 @@
|
||||
githubId = 2041764;
|
||||
name = "Andreas Wendleder";
|
||||
};
|
||||
goobertony = {
|
||||
github = "goobertony";
|
||||
email = "tonygameing@proton.me";
|
||||
githubId = 133613491;
|
||||
name = "Tonii Bittersweet";
|
||||
};
|
||||
goodrone = {
|
||||
email = "goodrone@gmail.com";
|
||||
github = "goodrone";
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
buildGoModule (finalAttrs: {
|
||||
pname = "meowfetch";
|
||||
version = "1.0.1";
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "faynopi";
|
||||
repo = "meowfetch";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-5nUogUYc25FPQKY9oIU2bmOpgWN8bCoxEhRJQfEZOcM=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-PnkXXNr+kIige1YB/vEG+sYI0X/rr+6Gtcnb0rW4YK0=";
|
||||
|
||||
ldflags = [ "-s" ];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Minimal system information fetcher program written in go";
|
||||
homepage = "https://github.com/faynopi/meowfetch";
|
||||
changelog = "https://github.com/faynopi/meowfetch/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ goobertony ];
|
||||
mainProgram = "meowfetch";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user