nixpkgs/pkgs/applications/misc/syncthing-tray/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
747 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoPackage, pkg-config, libappindicator-gtk3 }:
2017-08-15 16:34:55 +00:00
buildGoPackage rec {
pname = "syncthing-tray";
2017-08-15 16:34:55 +00:00
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 ];
2017-08-15 16:34:55 +00:00
meta = with lib; {
2017-08-15 16:34:55 +00:00
description = "Simple application tray for syncthing";
homepage = "https://github.com/alex2108/syncthing-tray";
2017-08-15 16:34:55 +00:00
license = licenses.mit;
maintainers = with maintainers; [ nickhu ];
2024-02-11 02:19:15 +00:00
mainProgram = "syncthing-tray";
2017-08-15 16:34:55 +00:00
};
}