Skip to content

Commit

Permalink
Merge pull request #303911 from SuperSandro2000/tailscalesd
Browse files Browse the repository at this point in the history
tailscalesd: init at 0.3.0
  • Loading branch information
SuperSandro2000 authored Apr 15, 2024
2 parents 3350a1f + ed14b42 commit 23db50d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/by-name/ta/tailscalesd/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
buildGoModule,
fetchFromGitHub
}:

buildGoModule rec {
pname = "tailscalesd";
version = "0.3.0";

src = fetchFromGitHub {
owner = "cfunkhouser";
repo = "tailscalesd";
rev = "v${version}";
hash = "sha256-OcvLVsPtAIaGTxk5SKNme0+i0PsDc8uY/sDcM/L5yqU=";
};

vendorHash = "sha256-cBHAo2RL7Q6TJbv1QYrescMFwbSUnGlOmTqqt8CZ/qc=";

meta = {
description = "Prometheus Service Discovery for Tailscale";
changelog = "https://github.com/cfunkhouser/tailscalesd/releases/tag/v${version}";
homepage = "https://github.com/cfunkhouser/tailscalesd";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
mainProgram = "tailscalesd";
};
}

0 comments on commit 23db50d

Please sign in to comment.