Merge pull request #288038 from Aleksanaa/ghfetch
ghfetch: init at 0.0.19
This commit is contained in:
commit
464391cb6d
26
pkgs/by-name/gh/ghfetch/package.nix
Normal file
26
pkgs/by-name/gh/ghfetch/package.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "ghfetch";
|
||||
version = "0.0.19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "orangekame3";
|
||||
repo = "ghfetch";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-Cmyd/wrobHPyG9ExUSfSsTwFUfbo9iuvmAr0uqunWWw=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-CPh9j5PJOSNvqgq/S9w+Kx3c5yIMHjc1AaqLwz9efeY=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI tool to fetch GitHub user information and show like neofetch";
|
||||
homepage = "https://github.com/orangekame3/ghfetch";
|
||||
license = licenses.mit;
|
||||
mainProgram = "ghfetch";
|
||||
maintainers = with maintainers; [ aleksana ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user