biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / ta / tailscalesd / package.nix
blob1dbbdf09a9d89282229b8a0bda5961faa626fd1a
2   lib,
3   buildGoModule,
4   fetchFromGitHub
5 }:
7 buildGoModule rec {
8   pname = "tailscalesd";
9   version = "0.3.0";
11   src = fetchFromGitHub {
12     owner = "cfunkhouser";
13     repo = "tailscalesd";
14     rev = "v${version}";
15     hash = "sha256-OcvLVsPtAIaGTxk5SKNme0+i0PsDc8uY/sDcM/L5yqU=";
16   };
18   vendorHash = "sha256-cBHAo2RL7Q6TJbv1QYrescMFwbSUnGlOmTqqt8CZ/qc=";
20   meta = {
21     description = "Prometheus Service Discovery for Tailscale";
22     changelog = "https://github.com/cfunkhouser/tailscalesd/releases/tag/v${version}";
23     homepage = "https://github.com/cfunkhouser/tailscalesd";
24     license = lib.licenses.mit;
25     maintainers = with lib.maintainers; [ SuperSandro2000 ];
26     mainProgram = "tailscalesd";
27   };