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
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "sttr";
|
|
version = "0.2.28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "abhimanyu003";
|
|
repo = "sttr";
|
|
rev = "v${version}";
|
|
hash = "sha256-5nofm5LQRQCQNNpqK8jwBpIguuh1/UTEQy1u5sYDx6A=";
|
|
};
|
|
|
|
vendorHash = "sha256-3UDaVWeNCxA9jjQg9/JVheZijERtFJ7RYnk9h7qV12U=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.version=${version}"
|
|
];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd sttr \
|
|
--bash <($out/bin/sttr completion bash) \
|
|
--fish <($out/bin/sttr completion fish) \
|
|
--zsh <($out/bin/sttr completion zsh)
|
|
'';
|
|
|
|
meta = {
|
|
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 = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ Ligthiago ];
|
|
mainProgram = "sttr";
|
|
};
|
|
}
|