Merge pull request #34100 from jokogr/pkg/xmonad-log
xmonad-log: init at 0.1.0
This commit is contained in:
commit
ebd2a8b165
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -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";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
]
|
|
@ -17928,6 +17928,8 @@ with pkgs;
|
||||||
|
|
||||||
xkblayout-state = callPackage ../applications/misc/xkblayout-state { };
|
xkblayout-state = callPackage ../applications/misc/xkblayout-state { };
|
||||||
|
|
||||||
|
xmonad-log = callPackage ../tools/misc/xmonad-log { };
|
||||||
|
|
||||||
xmonad-with-packages = callPackage ../applications/window-managers/xmonad/wrapper.nix {
|
xmonad-with-packages = callPackage ../applications/window-managers/xmonad/wrapper.nix {
|
||||||
inherit (haskellPackages) ghcWithPackages;
|
inherit (haskellPackages) ghcWithPackages;
|
||||||
packages = self: [];
|
packages = self: [];
|
||||||
|
|
Loading…
Reference in New Issue