chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / gh / ghfetch / package.nix
blob79a4c187dc0abac2459779240b4f2e4ceb8e99d3
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "ghfetch";
8   version = "0.0.19";
10   src = fetchFromGitHub {
11     owner = "orangekame3";
12     repo = "ghfetch";
13     rev = "v${version}";
14     hash = "sha256-Cmyd/wrobHPyG9ExUSfSsTwFUfbo9iuvmAr0uqunWWw=";
15   };
17   vendorHash = "sha256-CPh9j5PJOSNvqgq/S9w+Kx3c5yIMHjc1AaqLwz9efeY=";
19   meta = with lib; {
20     description = "CLI tool to fetch GitHub user information and show like neofetch";
21     homepage = "https://github.com/orangekame3/ghfetch";
22     license = licenses.mit;
23     mainProgram = "ghfetch";
24     maintainers = with maintainers; [ aleksana ];
25   };