mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 19:16:11 +00:00
srgn: init at 0.12.0
This commit is contained in:
parent
dbc26271c2
commit
abe7e6ea03
36
pkgs/by-name/sr/srgn/package.nix
Normal file
36
pkgs/by-name/sr/srgn/package.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ rustPlatform
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
, lib
|
||||
}:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "srgn";
|
||||
version = "0.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "alexpovel";
|
||||
repo = "srgn";
|
||||
rev = "${pname}-v${version}";
|
||||
hash = "sha256-d53aSo1gzINC8WdMzjCHzU/8+9kvrrGglV4WsiCt+rM=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-jy7KHcdkI+T8GbT6gH9ppJhQvhv/NPe+jRWKuybtQC4=";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
postInstall = ''
|
||||
for shell in bash zsh fish; do
|
||||
installShellCompletion --cmd srgn "--$shell" <("$out/bin/srgn" --completions "$shell")
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A code surgeon for precise text and code transplantation";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ caralice ];
|
||||
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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user