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
50 lines
989 B
Nix
50 lines
989 B
Nix
{
|
|
coreutils,
|
|
fetchFromGitHub,
|
|
gh,
|
|
lib,
|
|
makeWrapper,
|
|
nix-update-script,
|
|
stdenvNoCC,
|
|
}:
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "gh-contribs";
|
|
version = "0.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MintArchit";
|
|
repo = "gh-contribs";
|
|
rev = "v${version}";
|
|
hash = "sha256-fqyxq/lpMcLXOYY0MNI5uv8Go2erpg7dEIsEI+ExSVI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
installPhase = ''
|
|
install -D -m755 "gh-contribs" "$out/bin/gh-contribs"
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram "$out/bin/gh-contribs" \
|
|
--prefix PATH : "${
|
|
lib.makeBinPath [
|
|
coreutils
|
|
gh
|
|
]
|
|
}"
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
homepage = "https://github.com/MintArchit/gh-contribs";
|
|
description = "GitHub Contribution Graph CLI";
|
|
maintainers = [ lib.maintainers.vinnymeller ];
|
|
license = lib.licenses.unlicense;
|
|
mainProgram = "gh-contribs";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|