mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Added emacs-geiser-gauche.
* gnu/packages/emacs-xyz.scm (emacs-geiser-gauche): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
fc5948636b
commit
7bfa0adec7
1 changed files with 35 additions and 1 deletions
|
@ -61,7 +61,7 @@
|
||||||
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
||||||
;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
|
;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
|
||||||
;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
|
;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
|
||||||
;;; Copyright © 2020 Martin Becze <mjbecze@riseup.net>
|
;;; Copyright © 2020, 2021 Martin Becze <mjbecze@riseup.net>
|
||||||
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||||
;;; Copyright © 2020 6033fe7de85d <6033fe7de85d@airmail.cc>
|
;;; Copyright © 2020 6033fe7de85d <6033fe7de85d@airmail.cc>
|
||||||
|
@ -274,6 +274,40 @@ (define-public emacs-ac-geiser
|
||||||
(license license:bsd-3)
|
(license license:bsd-3)
|
||||||
(home-page "https://github.com/xiaohanyu/ac-geiser"))))
|
(home-page "https://github.com/xiaohanyu/ac-geiser"))))
|
||||||
|
|
||||||
|
(define-public emacs-geiser-gauche
|
||||||
|
(package
|
||||||
|
(name "emacs-geiser-gauche")
|
||||||
|
(version "0.0.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitlab.com/emacs-geiser/gauche.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0rxncnzx7qgcpvc8nz0sd8r0hwrplazzraahdwhbpq0q6z8ywqgg"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'install 'install-scheme
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(install-file
|
||||||
|
"geiser-gauche.scm"
|
||||||
|
(string-append
|
||||||
|
(assoc-ref outputs "out")
|
||||||
|
"/share/emacs/site-lisp"))
|
||||||
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("geiser" ,emacs-geiser)))
|
||||||
|
(home-page "https://gitlab.com/emacs-geiser/gauche")
|
||||||
|
(synopsis "Gauche Scheme support for Geiser")
|
||||||
|
(description
|
||||||
|
"This package adds support for the Gauche Scheme implementation to Geiser,
|
||||||
|
a generic Scheme interaction mode for the GNU Emacs editor.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public emacs-hyperbole
|
(define-public emacs-hyperbole
|
||||||
(package
|
(package
|
||||||
(name "emacs-hyperbole")
|
(name "emacs-hyperbole")
|
||||||
|
|
Loading…
Reference in a new issue