git-pkgs: 0.11.0 -> 0.15.0 (#495496)

This commit is contained in:
Marcin Serwin
2026-03-27 17:51:23 +00:00
committed by GitHub
+4 -7
View File
@@ -7,16 +7,16 @@
}:
buildGoModule rec {
pname = "git-pkgs";
version = "0.11.0";
version = "0.15.0";
src = fetchFromGitHub {
owner = "git-pkgs";
repo = "git-pkgs";
tag = "v${version}";
hash = "sha256-XjW3qwybTmzW2CNgu1Edgs5ZZ9xl3+uS4sT8VWD3jyQ=";
hash = "sha256-ePkLzUlHgFTJjzcZ5SP1LNcSCnaUhTO2nxDpt/jjvBc=";
};
vendorHash = "sha256-/LJwq17f7SAjSV2ZcLrdaKZYf9RVJ9wtYqEsW0ubT1Q=";
vendorHash = "sha256-3753+h7NBpawkk0+UL+chIvS7vfklDU+T8uKjHsD6Yc=";
subPackages = [ "." ];
@@ -24,13 +24,10 @@ buildGoModule rec {
"-X github.com/git-pkgs/git-pkgs/cmd.version=${version}"
];
# Tries to access the internet.
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
postBuild = ''
go run scripts/generate-man.go
go run scripts/generate-man/main.go
installManPage man/*.1
'';