Merge pull request #284228 from fabaff/golink

golink: init at 0-unstable-2024-01-26
This commit is contained in:
h7x4 2024-01-27 23:42:50 +01:00 committed by GitHub
commit 23e359e488
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,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";
};
}