about summary refs log tree commit diff
path: root/pkgs/by-name/go/golink/package.nix
blob: d71e3df66339b072aee12bd8cabf5bf487ddf06f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "golink";
  version = "0-unstable-2024-01-26";

  src = fetchFromGitHub {
    owner = "tailscale";
    repo = "golink";
    # https://github.com/tailscale/golink/issues/104
    rev = "d9de913fb174ec2569a15b6e2dbe5cb6e4a0a853";
    hash = "sha256-w6jRbajEQkOrBqxDnQreSmSB5DNL9flWjloShiIBM+M=";
  };

  vendorHash = "sha256-R/o3csZC/M9nm0k5STL7AhbG5J4LtdxqKaVjM/9ggW8=";

  ldflags = [
    "-s"
    "-w"
  ];

  meta = with lib; {
    description = "A private shortlink service for tailnets";
    homepage = "https://github.com/tailscale/golink";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
    mainProgram = "golink";
  };
}