Files
nixpkgs/pkgs/by-name/or/org-stats/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

67 lines
1.5 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
replaceVars,
installShellFiles,
testers,
org-stats,
}:
buildGoModule rec {
pname = "org-stats";
version = "1.12.2";
src = fetchFromGitHub {
owner = "caarlos0";
repo = "org-stats";
rev = "v${version}";
hash = "sha256-QTjJ+4Qu5u+5ZCoIAQBxqdhjNI2CXUB8r2Zx8xfIiGw=";
};
vendorHash = "sha256-0biuv94wGXiME181nlkvozhB+x4waGMgwXD9ColQWPw=";
patches = [
# patch in version information
# since `debug.ReadBuildInfo` does not work with `go build
(replaceVars ./version.patch {
inherit version;
})
];
nativeBuildInputs = [
installShellFiles
];
ldflags = [
"-s"
"-w"
];
postInstall = ''
$out/bin/org-stats man > org-stats.1
installManPage org-stats.1
installShellCompletion --cmd org-stats \
--bash <($out/bin/org-stats completion bash) \
--fish <($out/bin/org-stats completion fish) \
--zsh <($out/bin/org-stats completion zsh)
'';
passthru.tests = {
version = testers.testVersion {
package = org-stats;
command = "org-stats version";
};
};
meta = with lib; {
description = "Get the contributor stats summary from all repos of any given organization";
homepage = "https://github.com/caarlos0/org-stats";
changelog = "https://github.com/caarlos0/org-stats/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
mainProgram = "org-stats";
};
}