meowfetch: init at 1.0.1 (#536880)

This commit is contained in:
Oleksii Filonenko
2026-06-30 10:42:29 +00:00
committed by GitHub
2 changed files with 40 additions and 0 deletions
+6
View File
@@ -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";
+34
View File
@@ -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";
};
})