sttr: init at 0.2.18
This commit is contained in:
parent
1ab54f84dc
commit
b9d5aac45b
1 changed files with 43 additions and 0 deletions
43
pkgs/by-name/st/sttr/package.nix
Normal file
43
pkgs/by-name/st/sttr/package.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "sttr";
|
||||
version = "0.2.18";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "abhimanyu003";
|
||||
repo = "sttr";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-zZ9zrKUbrRaYQrlUtjOZLfEuiaqp/yyXpOlDspBJbSQ=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-io56WqF3cAyNK7Auhdq2iB26B6wjcVnq9cr3NS/4Z0w=";
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X=main.version=${version}"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
installShellCompletion --cmd sttr \
|
||||
--bash <($out/bin/sttr completion bash) \
|
||||
--fish <($out/bin/sttr completion fish) \
|
||||
--zsh <($out/bin/sttr completion zsh)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cross-platform cli tool to perform various operations on string";
|
||||
homepage = "https://github.com/abhimanyu003/sttr";
|
||||
changelog = "https://github.com/abhimanyu003/sttr/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ Ligthiago ];
|
||||
mainProgram = "sttr";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue