xmonad-log: init at 0.1.0

This commit is contained in:
Ioannis Koutras 2017-11-26 01:57:54 +02:00
parent 94276da9e9
commit 64fa24b516
3 changed files with 39 additions and 0 deletions

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 ];
};
}

View file

@ -0,0 +1,12 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
[
{
goPackagePath = "github.com/godbus/dbus";
fetch = {
type = "git";
url = "https://github.com/godbus/dbus";
rev = "a389bdde4dd695d414e47b755e95e72b7826432c";
sha256 = "1ckvg15zdsgmbn4mi36cazkb407ixc9mmyf7vwj8b8wi3d00rgn9";
};
}
]

View file

@ -17921,6 +17921,8 @@ with pkgs;
xkblayout-state = callPackage ../applications/misc/xkblayout-state { };
xmonad-log = callPackage ../tools/misc/xmonad-log { };
xmonad-with-packages = callPackage ../applications/window-managers/xmonad/wrapper.nix {
inherit (haskellPackages) ghcWithPackages;
packages = self: [];