diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index cde90b19938c..fabc8dfbef69 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -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"; diff --git a/pkgs/by-name/me/meowfetch/package.nix b/pkgs/by-name/me/meowfetch/package.nix new file mode 100644 index 000000000000..b09773b39da3 --- /dev/null +++ b/pkgs/by-name/me/meowfetch/package.nix @@ -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"; + }; +})