mirror of
https://github.com/charmbracelet/gum
synced 2026-03-14 21:55:45 +01:00
12 lines
219 B
Nix
12 lines
219 B
Nix
{ pkgs }:
|
|
|
|
pkgs.buildGoModule rec {
|
|
pname = "gum";
|
|
version = "0.15.0";
|
|
|
|
src = ./.;
|
|
|
|
vendorHash = "sha256-i/KBe41ufYA+tqnB5LCC1geIc2Jnh97JLXcXfBgxdM4=";
|
|
|
|
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
|
|
}
|