diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/wm.scm | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index f0032cd4c7..ba39ccd0e9 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -37,7 +37,7 @@ ;;; Copyright © 2020 Marcin Karpezo <[email protected]> ;;; Copyright © 2020 EuAndreh <[email protected]> ;;; Copyright © 2020 Michael Rohleder <[email protected]> -;;; Copyright © 2020 Guillaume Le Vaillant <[email protected]> +;;; Copyright © 2020, 2022 Guillaume Le Vaillant <[email protected]> ;;; Copyright © 2020 B. Wilson <[email protected]> ;;; Copyright © 2020 Niklas Eklund <[email protected]> ;;; Copyright © 2020 Robert Smith <[email protected]> @@ -55,6 +55,7 @@ ;;; Copyright © 2022 Pier-Hugues Pellerin <[email protected]> ;;; Copyright © 2022 Maxim Cournoyer <[email protected]> ;;; Copyright © 2022 muradm <[email protected]> +;;; Copyright © 2022 Elais Player <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1820,7 +1821,7 @@ Wayland compositors supporting the wlr-output-management protocol.") (define-public stumpwm (package (name "stumpwm") - (version "20.11") + (version "22.05") (source (origin (method git-fetch) @@ -1829,7 +1830,7 @@ Wayland compositors supporting the wlr-output-management protocol.") (commit version))) (file-name (git-file-name "stumpwm" version)) (sha256 - (base32 "1ghs6ihvmb3bz4q4ys1d3h6rdi96xyiw7l2ip7jh54c25049aymf")))) + (base32 "12hf70mpwy0ixiyvv8sf8pkwrzz8nb12a8ybvsdpibsxfjxgxnan")))) (build-system asdf-build-system/sbcl) (native-inputs `(("fiasco" ,sbcl-fiasco) ("texinfo" ,texinfo) @@ -1842,9 +1843,13 @@ Wayland compositors supporting the wlr-output-management protocol.") ("alexandria" ,sbcl-alexandria))) (outputs '("out" "lib")) (arguments - '(#:asd-systems '("stumpwm") - #:phases + '(#:phases (modify-phases %standard-phases + (add-after 'unpack 'fix-tests + (lambda _ + (substitute* "stumpwm-tests.asd" + (("\"ALL-TESTS\"") + "\"RUN-PACKAGE-TESTS\" :package")))) (add-after 'create-asdf-configuration 'build-program (lambda* (#:key outputs #:allow-other-keys) (build-program |