Skip to content

Commit

Permalink
tsnsrv: init at 0-unstable-2024-02-14
Browse files Browse the repository at this point in the history
  • Loading branch information
patka-123 committed Feb 14, 2024
1 parent fc1b4c9 commit 47b5c94
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/by-name/ts/tsnsrv/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
pname = "tsnsrv";
version = "0-unstable-2024-02-14";

src = fetchFromGitHub {
owner = "boinkor-net";
repo = "tsnsrv";
rev = "b07362e2e225a295c2544abffe25dda68133f06e";
hash = "sha256-JQ1pkasPrmw+2QhSw75520ZRq4PfnYDNK0XK5/+SG60=";
};

vendorHash = "sha256-CWqlotDOs2aJTwkR5AcngThehInH7QKxpj4gjnx5Ygs=";

meta = with lib; {
description = "A reverse proxy that exposes services on your tailnet";
homepage = "https://github.com/boinkor-net/tsnsrv";
license = licenses.mit;
maintainers = with maintainers; [ patka ];
mainProgram = "tsnsrv";
};
}

0 comments on commit 47b5c94

Please sign in to comment.