fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 buildGoModule,
4 fetchFromGitHub,
5}:
6
7buildGoModule rec {
8 pname = "wishlist";
9 version = "0.15.2";
10
11 src = fetchFromGitHub {
12 owner = "charmbracelet";
13 repo = "wishlist";
14 rev = "v${version}";
15 sha256 = "sha256-RulCoXPqfsZrxlDMTbyFNxqf/tdi26Ikq6wNUXCp86I=";
16 };
17
18 vendorHash = "sha256-RPIxE1/ICchtCsIhShcJeUFfCWwzlCUfrY8yWfBeuHU=";
19
20 doCheck = false;
21
22 ldflags = [
23 "-s"
24 "-w"
25 "-X=main.Version=${version}"
26 ];
27
28 meta = {
29 description = "Single entrypoint for multiple SSH endpoints";
30 homepage = "https://github.com/charmbracelet/wishlist";
31 changelog = "https://github.com/charmbracelet/wishlist/releases/tag/v${version}";
32 license = lib.licenses.mit;
33 maintainers = with lib.maintainers; [ caarlos0 ];
34 mainProgram = "wishlist";
35 };
36}