syncthing-tray: init at v0.7

This commit is contained in:
Nick Hu
2017-08-15 17:49:17 +01:00
parent 11eece3a2e
commit 78b6d45921
3 changed files with 122 additions and 0 deletions
@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub, buildGoPackage, pkgconfig, libappindicator-gtk3 }:
buildGoPackage rec {
name = "syncthing-tray-${version}";
version = "0.7";
goPackagePath = "github.com/alex2108/syncthing-tray";
src = fetchFromGitHub {
owner = "alex2108";
repo = "syncthing-tray";
rev = "v${version}";
sha256 = "0869kinnsfzb8ydd0sv9fgqsi1sy5rhqg4whfdnrv82xjc71xyw3";
};
goDeps = ./deps.nix;
buildInputs = [ pkgconfig libappindicator-gtk3 ];
meta = with stdenv.lib; {
description = "Simple application tray for syncthing";
homepage = https://github.com/alex2108/syncthing-tray;
license = licenses.mit;
maintainers = with maintainers; [ nickhu ];
platforms = platforms.all;
};
}