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
63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPackages,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
git,
|
|
nix-update-script,
|
|
installShellFiles,
|
|
}:
|
|
let
|
|
emulatorAvailable = stdenv.hostPlatform.emulatorAvailable buildPackages;
|
|
emulator = stdenv.hostPlatform.emulator buildPackages;
|
|
version = "0.5.3";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
pname = "git-prole";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "9999years";
|
|
repo = "git-prole";
|
|
tag = "v${version}";
|
|
hash = "sha256-QwLkByC8gdAnt6geZS285ErdH8nfV3vsWjMF4hTzq9Y=";
|
|
};
|
|
|
|
buildFeatures = [ "clap_mangen" ];
|
|
|
|
cargoHash = "sha256-qghc8HtJfpTYXAwC2xjq8lLlCu419Ttnu/AYapkAulI=";
|
|
|
|
nativeCheckInputs = [
|
|
git
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
postInstall = lib.optionalString emulatorAvailable ''
|
|
manpages=$(mktemp -d)
|
|
${emulator} $out/bin/git-prole manpages "$manpages"
|
|
for manpage in "$manpages"/*; do
|
|
installManPage "$manpage"
|
|
done
|
|
|
|
installShellCompletion --cmd git-prole \
|
|
--bash <(${emulator} $out/bin/git-prole completions bash) \
|
|
--fish <(${emulator} $out/bin/git-prole completions fish) \
|
|
--zsh <(${emulator} $out/bin/git-prole completions zsh)
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/9999years/git-prole";
|
|
changelog = "https://github.com/9999years/git-prole/releases/tag/v${version}";
|
|
description = "`git-worktree(1)` manager";
|
|
license = [ lib.licenses.mit ];
|
|
maintainers = [ lib.maintainers._9999years ];
|
|
mainProgram = "git-prole";
|
|
};
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
}
|