Merge pull request #34100 from jokogr/pkg/xmonad-log

xmonad-log: init at 0.1.0
This commit is contained in:
Jörg Thalheim 2018-01-22 19:15:32 +00:00 committed by GitHub
commit ebd2a8b165
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -17928,6 +17928,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: [];