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
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
lib,
|
|
stdenv,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "srgn";
|
|
version = "0.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alexpovel";
|
|
repo = "srgn";
|
|
rev = "srgn-v${version}";
|
|
hash = "sha256-ZWjpkClhac4VD4b/Veffb5FHGvh+oeTu3ukaOux6MG0=";
|
|
};
|
|
|
|
cargoHash = "sha256-d/wFD0kxWNOsYaY4G5P9iM85dSo0UZGSte5AqOosM2g=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
for shell in bash zsh fish; do
|
|
installShellCompletion --cmd srgn "--$shell" <("$out/bin/srgn" --completions "$shell")
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Code surgeon for precise text and code transplantation";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ magistau ];
|
|
mainProgram = "srgn";
|
|
homepage = "https://github.com/${src.owner}/${src.repo}/";
|
|
downloadPage = "https://github.com/${src.owner}/${src.repo}/releases/tag/${src.rev}";
|
|
changelog = "https://github.com/${src.owner}/${src.repo}/blob/${src.rev}/CHANGELOG.md";
|
|
};
|
|
}
|