From 527b3365883389f7abc6e3b8cc57490bb8772cfd Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Sat, 4 Mar 2023 07:04:53 -0700 Subject: tailscale-systray: init at 2022-10-19 --- .../misc/tailscale-systray/default.nix | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pkgs/applications/misc/tailscale-systray/default.nix (limited to 'pkgs/applications/misc/tailscale-systray') diff --git a/pkgs/applications/misc/tailscale-systray/default.nix b/pkgs/applications/misc/tailscale-systray/default.nix new file mode 100644 index 0000000000000..85e927f018f13 --- /dev/null +++ b/pkgs/applications/misc/tailscale-systray/default.nix @@ -0,0 +1,32 @@ +{ lib +, buildGoModule +, fetchFromGitHub +, pkg-config +, gtk3 +, libayatana-appindicator +}: +buildGoModule rec { + pname = "tailscale-systray"; + version = "2022-10-19"; + + src = fetchFromGitHub { + owner = "mattn"; + repo = pname; + rev = "e7f8893684e7b8779f34045ca90e5abe6df6056d"; + sha256 = "sha256-3kozp6jq0xGllxoK2lGCNUahy/FvXyq11vNSxfDehKE="; + }; + + vendorHash = "sha256-YJ74SeZAMS+dXyoPhPTJ3L+5uL5bF8gumhMOqfvmlms="; + + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ gtk3 libayatana-appindicator ]; + + proxyVendor = true; + + meta = with lib; { + description = "Tailscale systray"; + homepage = "https://github.com/mattn/tailscale-systray"; + license = licenses.mit; + maintainers = with maintainers; [ qbit ]; + }; +} -- cgit 1.4.1