nixpkgs/pkgs/by-name/or/org-stats/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

64 lines
1.5 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, substituteAll
, 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
(substituteAll {
src = ./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";
};
}