diff options
author | Junker <dk@junkeria.club> | 2025-04-14 14:01:08 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2025-04-14 14:02:27 +0200 |
commit | 2cddd8b935da12431c72c12a596bc4c0ee93b0f5 (patch) | |
tree | 3611d6155d1bff6c29d989f9551d1fb0002ae1f1 | |
parent | 740c6cb279668a3edbd935c3f9a1f3031a69e43f (diff) | |
download | guix-2cddd8b935da12431c72c12a596bc4c0ee93b0f5.tar.gz guix-2cddd8b935da12431c72c12a596bc4c0ee93b0f5.zip |
gnu: Add sbcl-stumpwm-tomato.
* gnu/packages/wm.scm (sbcl-stumpwm-tomato): New variable.
Change-Id: Ice90869f46947d873bf1332ed53a701dc0aac60b
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-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 2b7d3c0b68..95d12e5e1e 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -2895,6 +2895,30 @@ features, in that it allows you to enable/disable connections, and no more. It not a replacement for nmtui and/or nmcli.") (license license:gpl3+))) +(define-public sbcl-stumpwm-tomato + (package + (name "sbcl-stumpwm-tomato") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Junker/stumpwm-tomato") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0qq11spvhrcq74gh0dw0p4859ai2mqzbxa45gjbf599kmcybp1pa")))) + (build-system asdf-build-system/sbcl) + (inputs (list stumpwm)) + (arguments + '(#:asd-systems '("tomato") + #:tests? #f)) + (home-page "https://github.com/Junker/stumpwm-tomato") + (synopsis "Advanced Pomodoro timer module for StumpWM") + (description + "This package provides an advanced Pomodoro timer module for StumpWM.") + (license license:gpl3+))) + (define-public sbcl-stumpwm-ttf-fonts (package (inherit stumpwm-contrib) |