pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / wishlist / default.nix
blobf2a2912649968d8ff35bbd4878499edfccb88600
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "wishlist";
5   version = "0.15.0";
7   src = fetchFromGitHub {
8     owner = "charmbracelet";
9     repo = "wishlist";
10     rev = "v${version}";
11     sha256 = "sha256-LozGwgm/LGOzCa+zKC77NX40etzT4PDeuw3yh1QMmMY=";
12   };
14   vendorHash = "sha256-QdMS1C8I3Ul5q6HQOw7+alinPo0yIZ4s7yIxQ/poEik=";
16   doCheck = false;
18   ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
20   meta = with lib; {
21     description = "Single entrypoint for multiple SSH endpoints";
22     homepage = "https://github.com/charmbracelet/wishlist";
23     changelog = "https://github.com/charmbracelet/wishlist/releases/tag/v${version}";
24     license = licenses.mit;
25     maintainers = with maintainers; [ caarlos0 penguwin ];
26     mainProgram = "wishlist";
27   };