2022-04-15 17:14:19 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "wishlist";
|
2023-07-29 08:33:58 +00:00
|
|
|
version = "0.13.0";
|
2022-04-15 17:14:19 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "charmbracelet";
|
|
|
|
repo = "wishlist";
|
|
|
|
rev = "v${version}";
|
2023-07-29 08:33:58 +00:00
|
|
|
sha256 = "sha256-NOR7YCLcwjf+oAi46qL6NteKLMSvJpqu9UzO6UvgcVQ=";
|
2022-04-15 17:14:19 +00:00
|
|
|
};
|
|
|
|
|
2023-07-29 08:33:58 +00:00
|
|
|
vendorHash = "sha256-v8R0e52CpyLKiuYcEZFWAY64tgCBZE2dY0vgqsHWeAc=";
|
2022-04-15 17:14:19 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A single entrypoint for multiple SSH endpoints";
|
|
|
|
homepage = "https://github.com/charmbracelet/wishlist";
|
|
|
|
changelog = "https://github.com/charmbracelet/wishlist/releases/tag/v${version}";
|
|
|
|
license = licenses.mit;
|
2023-07-17 13:57:53 +00:00
|
|
|
maintainers = with maintainers; [ caarlos0 penguwin ];
|
2022-04-15 17:14:19 +00:00
|
|
|
};
|
|
|
|
}
|