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
55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
coreutils,
|
|
gawk,
|
|
git,
|
|
gnugrep,
|
|
ncurses,
|
|
util-linux,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "git-quick-stats";
|
|
version = "2.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "git-quick-stats";
|
|
owner = "arzzen";
|
|
rev = version;
|
|
sha256 = "sha256-YVvlrlNRDDci7fH9LW4NxZcIkakVgvKe9FhJ2gCfoXg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installFlags = [
|
|
"PREFIX=${placeholder "out"}"
|
|
];
|
|
|
|
postInstall =
|
|
let
|
|
path = lib.makeBinPath [
|
|
coreutils
|
|
gawk
|
|
git
|
|
gnugrep
|
|
ncurses
|
|
util-linux
|
|
];
|
|
in
|
|
''
|
|
wrapProgram $out/bin/git-quick-stats --suffix PATH : ${path}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/arzzen/git-quick-stats";
|
|
description = "Simple and efficient way to access various statistics in git repository";
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.kmein ];
|
|
license = licenses.mit;
|
|
mainProgram = "git-quick-stats";
|
|
};
|
|
}
|