nixpkgs/pkgs/applications/misc/gum/default.nix

40 lines
1.0 KiB
Nix
Raw Normal View History

2022-07-30 03:09:07 +03:00
{ lib, buildGoModule, installShellFiles, fetchFromGitHub }:
buildGoModule rec {
pname = "gum";
2024-07-25 04:27:27 +03:00
version = "0.14.3";
2022-07-30 03:09:07 +03:00
src = fetchFromGitHub {
owner = "charmbracelet";
repo = pname;
rev = "v${version}";
2024-07-25 04:27:27 +03:00
hash = "sha256-cSPzbPGUwgvaFJ4qp9Dmm+hwORI5ndFqXjuAjjPwFeQ=";
2022-07-30 03:09:07 +03:00
};
2024-07-25 04:27:27 +03:00
vendorHash = "sha256-1M+qg20OMeOzxwTkYVROYAhK6lHhXoZ5bAnU2PNaYPQ=";
2022-07-30 03:09:07 +03:00
nativeBuildInputs = [
installShellFiles
];
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
postInstall = ''
$out/bin/gum man > gum.1
installManPage gum.1
installShellCompletion --cmd gum \
--bash <($out/bin/gum completion bash) \
--fish <($out/bin/gum completion fish) \
--zsh <($out/bin/gum completion zsh)
'';
meta = with lib; {
description = "Tasty Bubble Gum for your shell";
homepage = "https://github.com/charmbracelet/gum";
changelog = "https://github.com/charmbracelet/gum/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ maaslalani ];
2023-08-25 17:20:02 +03:00
mainProgram = "gum";
2022-07-30 03:09:07 +03:00
};
}