aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunker <dk@junkeria.club>2025-04-11 20:20:33 +0700
committerGuillaume Le Vaillant <glv@posteo.net>2025-04-14 13:46:48 +0200
commit35c1f382944e727913020c03127be888bcb2352f (patch)
tree1d8f5915bd0c86564da8622955ff396d28f55996
parentd11544c231faf72d3e743062ab8e333f4534fb33 (diff)
downloadguix-35c1f382944e727913020c03127be888bcb2352f.tar.gz
guix-35c1f382944e727913020c03127be888bcb2352f.zip
gnu: Add sbcl-stumpwm-stump-nm.
* gnu/packages/wm.scm (sbcl-stumpwm-stump-nm): New variable. Change-Id: I155ab3fc653e118f3b3969374cfeb22f2c695819 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r--gnu/packages/wm.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 375ed08c00..1444f415e1 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -80,6 +80,7 @@
;;; Copyright © 2024 Jakob Kirsch <jakob.kirsch@web.de>
;;; Copyright © 2025 Tomáš Čech <sleep_walker@gnu.org>
;;; Copyright © 2025 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2025 Junker <dk@junkeria.club>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2871,6 +2872,29 @@ control module for StumpWM.")
mouse control mode for StumpWM.")
(license (list license:gpl2+ license:gpl3+ license:bsd-2))))
+(define-public sbcl-stumpwm-stump-nm
+ (package
+ (inherit stumpwm-contrib)
+ (name "sbcl-stumpwm-stump-nm")
+ (arguments
+ '(#:asd-systems '("stump-nm")
+ #:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _ (chdir "util/stump-nm"))))))
+ (home-page "https://github.com/stumpwm/stumpwm-contrib")
+ (inputs (list stumpwm
+ sbcl-babel
+ sbcl-alexandria
+ sbcl-dbus))
+ (synopsis "StumpWM NetworkManager integration")
+ (description "This module allows you to manage your Wi-Fi networks and VPN
+connections from within StumpWM itself. It is intentionally pretty bare-bones in
+features, in that it allows you to enable/disable connections, and no more. It is
+not a replacement for nmtui and/or nmcli.")
+ (license license:gpl3+)))
+
(define-public sbcl-stumpwm-ttf-fonts
(package
(inherit stumpwm-contrib)