From da3c4fed7ebeda63d85212223faa8ed26d3986dd Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Wed, 4 Sep 2024 08:46:22 -0600 Subject: [PATCH] pkgs/tailscale-systray: remove --- pkgs/tailscale-systray.nix | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 pkgs/tailscale-systray.nix diff --git a/pkgs/tailscale-systray.nix b/pkgs/tailscale-systray.nix deleted file mode 100644 index 321c110..0000000 --- a/pkgs/tailscale-systray.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ pkgs -, lib -, buildGoModule -, fetchFromGitHub -, ... -}: -with lib; -with pkgs; -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 = [ libayatana-appindicator gtk3 ]; - - proxyVendor = true; - - meta = { - description = "Tailscale systray"; - homepage = "https://github.com/mattn/tailscale-systray"; - license = licenses.mit; - maintainers = with maintainers; [ qbit ]; - }; -}