From 49e4a8e26f810427f7053f0e93ae69fbec4263a6 Mon Sep 17 00:00:00 2001 From: luftmensch-luftmensch Date: Sun, 9 Jun 2024 17:58:51 +0200 Subject: syncthing-tray: migrate to buildGoModule --- pkgs/applications/misc/syncthing-tray/default.nix | 28 ----------------------- 1 file changed, 28 deletions(-) delete mode 100644 pkgs/applications/misc/syncthing-tray/default.nix (limited to 'pkgs/applications/misc/syncthing-tray/default.nix') diff --git a/pkgs/applications/misc/syncthing-tray/default.nix b/pkgs/applications/misc/syncthing-tray/default.nix deleted file mode 100644 index e9db92df121c4..0000000000000 --- a/pkgs/applications/misc/syncthing-tray/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ lib, fetchFromGitHub, buildGoPackage, pkg-config, libappindicator-gtk3 }: - -buildGoPackage rec { - pname = "syncthing-tray"; - version = "0.7"; - - goPackagePath = "github.com/alex2108/syncthing-tray"; - - src = fetchFromGitHub { - owner = "alex2108"; - repo = "syncthing-tray"; - rev = "v${version}"; - sha256 = "0869kinnsfzb8ydd0sv9fgqsi1sy5rhqg4whfdnrv82xjc71xyw3"; - }; - - goDeps = ./deps.nix; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ libappindicator-gtk3 ]; - - meta = with lib; { - description = "Simple application tray for syncthing"; - homepage = "https://github.com/alex2108/syncthing-tray"; - license = licenses.mit; - maintainers = with maintainers; [ nickhu ]; - mainProgram = "syncthing-tray"; - }; -} -- cgit 1.4.1