From bbc1f68204318d79ece3fa46ed71d7c21d6ec8a2 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber 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 ;;; Copyright © 2016 Nils Gillmann ;;; Copyright © 2016 Chris Marusich +;;; Copyright © 2015, 2016 Christopher Allan Webber ;;; ;;; 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