Christopher Allan Webber writes: > If you want to hack trying out guile-next, you can't use the geiser > package. Fortunately, the git version of geiser supports guile-next / > 2.2 / (2.1?) so, here's geiser-next! > > Not sure if other people care enough to have a geiser-next package, but > since we're Guile based here, I figured other people might want to be > hacking trying things out with the latest and greatest. > > - Chris
Annnnd guess who forgot the patch!
>From bbc1f68204318d79ece3fa46ed71d7c21d6ec8a2 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber <cweb...@dustycloud.org> Date: Fri, 29 Apr 2016 17:53:50 -0500 Subject: [PATCH] gnu: Add geiser-next. Also, I previously committed to this repository in 2015; add self to copyright headers for that year too. * gnu/packages/emacs.scm (geiser-next): New variable. --- gnu/packages/emacs.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 11010b2..7f904c0 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2015, 2016 Ricardo Wurmus <rek...@elephly.net> ;;; Copyright © 2016 Nils Gillmann <niaster...@grrlz.net> ;;; Copyright © 2016 Chris Marusich <cmmarus...@gmail.com> +;;; Copyright © 2015, 2016 Christopher Allan Webber <cweb...@dustycloud.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -260,6 +261,33 @@ implementation, Emacs and, ultimately, the schemer, giving them access to live metadata.") (license license:bsd-3))) +(define-public geiser-next + ;; Geiser's upcoming version supports guile-next, and 0.8.1 does not. + ;; When the next Geiser release comes out, we can remove this. + (package (inherit geiser) + (name "geiser-next") + (version "20160428.4c8b3de") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jaor/geiser.git") + (commit "4c8b3dee30ce7258602bef356337def95fcccd7e"))) + (sha256 + (base32 + "1nr183438z52v62amq38ngd83nwgkxzgssya19f7v6f47im0b95j")))) + (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 (name "paredit") -- 2.7.4