mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add emacs-gnugo.
* gnu/packages/emacs-xyz.scm (emacs-gnugo): New variable.
This commit is contained in:
parent
d558e2362e
commit
dc7c489605
1 changed files with 31 additions and 0 deletions
|
@ -7887,6 +7887,37 @@ (define-public emacs-exwm-x
|
|||
on mouse-control.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-gnugo
|
||||
(package
|
||||
(name "emacs-gnugo")
|
||||
(version "3.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://elpa.gnu.org/packages/gnugo-"
|
||||
version ".tar"))
|
||||
(sha256
|
||||
(base32
|
||||
"0xpjvs250gg71qwapdsb1hlc61gs0gpkjds01srf784fvyxx2gf1"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
(add-after 'unpack 'configure-default-gnugo-xpms-variable
|
||||
(lambda _
|
||||
(substitute* "gnugo.el"
|
||||
(("defvar gnugo-xpms nil")
|
||||
"defvar gnugo-xpms #'gnugo-imgen-create-xpms"))
|
||||
#t)))))
|
||||
(propagated-inputs
|
||||
`(("emacs-ascii-art-to-unicode" ,emacs-ascii-art-to-unicode)
|
||||
("emacs-xpm" ,emacs-xpm)))
|
||||
(home-page "https://elpa.gnu.org/packages/gnugo.html")
|
||||
(synopsis "Emacs major mode for playing GNU Go")
|
||||
(description "This package provides an Emacs based interface for GNU Go.
|
||||
It has a graphical mode where the board and stones are drawn using XPM images
|
||||
and supports the use of a mouse.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-gnuplot
|
||||
(package
|
||||
(name "emacs-gnuplot")
|
||||
|
|
Loading…
Reference in a new issue