xmonad-log: init at 0.1.0

This commit is contained in:
Ioannis Koutras
2018-01-21 14:57:36 +02:00
parent 94276da9e9
commit 64fa24b516
3 changed files with 39 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "xmonad-log-${version}";
version = "0.1.0";
goPackagePath = "github.com/xintron/xmonad-log";
src = fetchFromGitHub {
owner = "xintron";
repo = "xmonad-log";
rev = version;
sha256 = "1il6v0zcjw0pfb1hjj198y94jmlcx255h422ph0f1zr7afqkzmaw";
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "xmonad DBus monitoring solution";
homepage = https://github.com/xintron/xmonad-log;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ joko ];
};
}