From a45951534b47a68afdd94e1179499682d9548d05 Mon Sep 17 00:00:00 2001 From: Katherine Cox-Buday Date: Thu, 4 Jun 2020 17:40:56 -0500 Subject: [PATCH 3/6] gnu: Add sbcl-stumpwm-net. * gnu/packages/wm.scm (sbcl-stumpwm-net): New variable. --- gnu/packages/wm.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index daeddc3c0f..6165c805da 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -1783,6 +1783,24 @@ windows in the current X session.") between windows.") (license (list license:gpl2+ license:gpl3+ license:bsd-2)))) +(define-public sbcl-stumpwm-net + (package + (inherit stumpwm-contrib) + (name "sbcl-stumpwm-net") + (arguments + '(#:asd-system-name "net" + #:tests? #f + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'chdir (lambda _ (chdir "modeline/net") #t))))) + (home-page + "https://github.com/stumpwm/stumpwm-contrib/tree/master/modeline/net") + (synopsis "Modeline support for network connectivity") + (description "Modeline support for network connectivity.") + (supported-systems + (filter (lambda (a) (string-contains a "linux")) %supported-systems)) + (license license:gpl3+))) + (define-public lemonbar (let ((commit "35183ab81d2128dbb7b6d8e119cc57846bcefdb4") (revision "1")) -- 2.26.2