mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add emacs-scribble-mode.
* gnu/packages/emacs.scm (emacs-scribble-mode): New variable.
This commit is contained in:
parent
3a352a4405
commit
51f4e36cb9
1 changed files with 28 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
||||||
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
;;; Copyright © 2015 Federico Beffa <beffa@fbengineering.ch>
|
||||||
;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2016, 2017, 2018 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2016, 2017, 2018 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2015, 2016 Christopher Allan Webber <cwebber@dustycloud.org>
|
;;; Copyright © 2015, 2016, 2018 Christopher Lemmer Webber <cwebber@dustycloud.org>
|
||||||
;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
|
;;; Copyright © 2016 Adriano Peluso <catonano@gmail.com>
|
||||||
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||||
|
@ -654,6 +654,33 @@ (define-public emacs-ghub
|
||||||
only a handful of functions that are not resource-specific.")
|
only a handful of functions that are not resource-specific.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-scribble-mode
|
||||||
|
(let ((commit "34e9e5edb921813b6483e0fefa848efb6ee4b314")
|
||||||
|
(version "0.0")
|
||||||
|
(revision 0))
|
||||||
|
(package
|
||||||
|
(name "emacs-scribble-mode")
|
||||||
|
(version (if (zero? revision)
|
||||||
|
version
|
||||||
|
(string-append version "-"
|
||||||
|
(number->string revision)
|
||||||
|
"." (string-take commit 7))))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/emacs-pe/scribble-mode.git")
|
||||||
|
(commit commit)))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0598byqpz2q6yi2q4dwd77jj9z3n99z34d3an51s9m2za0nh1qvp"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/emacs-pe/scribble-mode")
|
||||||
|
(synopsis "Emacs mode for editing the Scribble documentation syntax.")
|
||||||
|
(description
|
||||||
|
"This package provides basic syntax highlighting and editing support
|
||||||
|
for editing Racket's Scribble documentation syntax in Emacs.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-haskell-mode
|
(define-public emacs-haskell-mode
|
||||||
(package
|
(package
|
||||||
(name "emacs-haskell-mode")
|
(name "emacs-haskell-mode")
|
||||||
|
|
Loading…
Reference in a new issue