diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2018-12-15 22:38:53 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-12-16 16:28:07 +0100 |
commit | ba9ba64d93ed9453f0799be4df4ca80ab98e6cab (patch) | |
tree | 1a5cafc6c38458d19961cdae6474860fff4048c1 /gnu | |
parent | 1075623a5c94974efc2c336af25dda1407f1c716 (diff) | |
download | patches-ba9ba64d93ed9453f0799be4df4ca80ab98e6cab.tar patches-ba9ba64d93ed9453f0799be4df4ca80ab98e6cab.tar.gz |
gnu: stumpwm: Update to 18.11.
* gnu/packages/lisp.scm (stumpwm): Update to 18.11.
[native-inputs]: New field.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 64f4e7d85a..9e66dccfd2 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -967,16 +967,17 @@ from other CLXes around the net.") (define-public stumpwm (package (name "stumpwm") - (version "18.05") + (version "18.11") (source (origin (method url-fetch) (uri (string-append "https://github.com/stumpwm/stumpwm/archive/" version ".tar.gz")) (sha256 - (base32 "1n2gaab3lwgf5r1hmwdcw13dkv9xdd7drn2shx28kfxvhdc9kbb9")) + (base32 "177gxfk4c127i9crghx6fmkipznhgylvzgnjb2pna38g21gg6s39")) (file-name (string-append "stumpwm-" version ".tar.gz")))) (build-system asdf-build-system/sbcl) + (native-inputs `(("fiasco" ,sbcl-fiasco))) (inputs `(("cl-ppcre" ,sbcl-cl-ppcre) ("clx" ,sbcl-clx) ("alexandria" ,sbcl-alexandria))) |