{ 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"; }; }