diff options
author | Federico Beffa <beffa@fbengineering.ch> | 2016-10-24 09:56:35 +0200 |
---|---|---|
committer | Federico Beffa <beffa@fbengineering.ch> | 2016-10-31 16:13:27 +0100 |
commit | 6af886f492a7718a992226d1c2baac7cae04b407 (patch) | |
tree | a445c2b1fbd8d7f75e023ba7e106af6dad267756 /gnu | |
parent | 149c6523780388c5374d7dc30b1b0f8eeafe3983 (diff) | |
download | guix-6af886f492a7718a992226d1c2baac7cae04b407.tar guix-6af886f492a7718a992226d1c2baac7cae04b407.tar.gz |
gnu: geiser-next: Re-introduce it.
* gnu/packages/emacs.scm (geiser-next): Re-introduce it.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 5050f2e0dc..1757a66ccf 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -298,8 +298,36 @@ metadata.") (license license:bsd-3))) (define-public geiser-next - ;; This has become "geiser". - (deprecated-package "geiser-next" geiser)) + ;; Geiser's upcoming version supports Chibi and Chez, while it was forgot to + ;; include some required files in 0.9. When the next Geiser release comes + ;; out, we can remove this. + (let ((commit "16035b9fa475496f7f89a57fa81455057af749a0") + (revision "1")) + (package + (inherit geiser) + (name "geiser-next") + (version (string-append "0.9-" revision "." (string-take commit 7))) + (source (origin + (method git-fetch) + (file-name (string-append name "-" version ".tar.gz")) + (uri (git-reference + (url "git://git.sv.gnu.org/geiser.git") + (commit commit))) + (sha256 + (base32 + "1rrafizrhjkai0msryjiz4c5dcdyihf0i2wmgiy8br74rwbxpyl5")))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("texinfo" ,texinfo) + ,@(package-native-inputs geiser))) + (arguments + (substitute-keyword-arguments (package-arguments geiser) + ((#:phases phases) + `(modify-phases ,phases + (add-after 'unpack 'autogen + (lambda _ + (zero? (system* "sh" "autogen.sh"))))))))))) (define-public paredit (package |