diff options
author | Trevor Richards <trev@trevdev.ca> | 2022-09-12 14:10:30 -0700 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-09-15 10:35:57 +0200 |
commit | 63115fafbda8cd0fdf5e33ef93e7827bd49d2430 (patch) | |
tree | 3a99f30cba334b9057f7f3b6d67d709f790eabff /gnu/packages/wm.scm | |
parent | d10bc44c2452aeb81de36a33257c327e30ffbc1f (diff) |
gnu: Add sbcl-stumpwm-notify.
* gnu/packages/wm.scm (sbcl-stumpwm-notify): New variable.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu/packages/wm.scm')
-rw-r--r-- | gnu/packages/wm.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index c622bb5153..f329020eb4 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -56,6 +56,7 @@ ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022 muradm <mail@muradm.net> ;;; Copyright © 2022 Elais Player <elais@fastmail.com> +;;; Copyright © 2022 Trevor Richards <trev@trevdev.ca> ;;; ;;; This file is part of GNU Guix. ;;; @@ -2256,6 +2257,29 @@ one in Emacs.") PNG files.") (license license:gpl3+))) +(define-public sbcl-stumpwm-notify + (package + (inherit stumpwm-contrib) + (name "sbcl-stumpwm-notify") + (build-system asdf-build-system/sbcl) + (inputs + (list sbcl-bordeaux-threads + sbcl-dbus + sbcl-xml-emitter + (list stumpwm "lib"))) + (arguments + '(#:asd-systems '("notify") + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'chdir + (lambda _ (chdir "util/notify")))))) + (home-page "https://github.com/stumpwm/stumpwm-contrib") + (synopsis "Notifications server for StumpWM") + (description "This module implements org.freedesktop.Notifications +interface[fn:dbus-spec]. It shows notifications using stumpwm:message +by default.") + (license license:gpl3+))) + (define-public lemonbar (package (name "lemonbar") |