summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2021-04-09 03:14:28 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2021-04-09 03:14:28 +0300
commitfb1a1baedce9eaf63e77a84337072d259ad1d6e3 (patch)
tree296dae4c09e700e36bb880c83a19a8316c097ee2
parentguix: emacs-athena: Fix build but still failed to run. (diff)
downloadguix-wigust-fb1a1baedce9eaf63e77a84337072d259ad1d6e3.tar.gz
guix: stumpwm-next: Update to 20.11-1.ca3d065.
* guix/wigust/packages/lisp.scm (stumpwm-next): Update to 20.11-1.ca3d065.
-rw-r--r--guix/wigust/packages/lisp.scm23
1 files changed, 19 insertions, 4 deletions
diff --git a/guix/wigust/packages/lisp.scm b/guix/wigust/packages/lisp.scm
index 510cc68..893b9c5 100644
--- a/guix/wigust/packages/lisp.scm
+++ b/guix/wigust/packages/lisp.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2018, 2019, 2020 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2018, 2019, 2020, 2021 Oleg Pykhalov <go.wigust@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -17,6 +17,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (wigust packages lisp)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages lisp)
#:use-module (gnu packages)
#:use-module ((guix licenses) #:prefix license:)
@@ -110,7 +111,7 @@
#t))))))))))
(define-public stumpwm-next
- (let ((commit "603abb210d7130543e42b48a812e57fe343ad935"))
+ (let ((commit "ca3d065186b52aefa70a7cf5fce7684f0979d946"))
(package
(inherit stumpwm-checkout)
(name "stumpwm-next")
@@ -118,12 +119,26 @@
(source (origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/stumpwm/stumpwm.git")
+ (url "https://github.com/wigust/stumpwm.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
- "0dh6652i2gsixff25ac78sila5hn35b0914sqpya5q4ir1lcr1mj")))))))
+ "119qsh7gj8bp8gcc19zrr1ki6sxm7msd60yv84cv1zd79ls4k45l"))))
+ (inputs
+ `(("sbcl-cffi" ,sbcl-cffi)
+ ("bash" ,bash-minimal)
+ ,@(package-inputs stumpwm-checkout)))
+ (arguments
+ (substitute-keyword-arguments
+ (package-arguments stumpwm-checkout)
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (add-after 'unpack 'substitute
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "primitives.lisp"
+ (("/bin/sh") (string-append (assoc-ref inputs "bash") "/bin/sh")))))
+ (delete 'install-manual))))))))
(define-public sbcl-stumpwm-checkout-ttf-fonts
(package