mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
parent
a12111248b
commit
d7c98fc6e4
3 changed files with 75 additions and 0 deletions
62
pkgs/tools/misc/org-stats/default.nix
Normal file
62
pkgs/tools/misc/org-stats/default.nix
Normal file
|
@ -0,0 +1,62 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, substituteAll
|
||||
, installShellFiles
|
||||
, testers
|
||||
, org-stats
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "org-stats";
|
||||
version = "1.11.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "caarlos0";
|
||||
repo = "org-stats";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-b0Cfs4EqQOft/HNAoJvRriCMzNiOgYagBLiPYgsDgJM=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-LKpnEXVfxBR3cebv46QontDVeA64MJe0vNiKSnTjLtQ=";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
11
pkgs/tools/misc/org-stats/version.patch
Normal file
11
pkgs/tools/misc/org-stats/version.patch
Normal file
|
@ -0,0 +1,11 @@
|
|||
--- a/cmd/version.go
|
||||
+++ b/cmd/version.go
|
||||
@@ -16,7 +16,7 @@ var versionCmd = &cobra.Command{
|
||||
if sum == "" {
|
||||
sum = "none"
|
||||
}
|
||||
- fmt.Printf("https://%s %s @ %s\n", info.Main.Path, info.Main.Version, sum)
|
||||
+ fmt.Printf("https://%s %s @ %s\n", info.Main.Path, "@version@", sum)
|
||||
} else {
|
||||
fmt.Println("unknown")
|
||||
}
|
|
@ -10926,6 +10926,8 @@ with pkgs;
|
|||
autoreconfHook = buildPackages.autoreconfHook269;
|
||||
};
|
||||
|
||||
org-stats = callPackage ../tools/misc/org-stats { };
|
||||
|
||||
orz = callPackage ../tools/compression/orz { };
|
||||
|
||||
os-prober = callPackage ../tools/misc/os-prober { };
|
||||
|
|
Loading…
Reference in a new issue