gnu: Add emacs-sourcemap.

* gnu/packages/emacs.scm (emacs-sourcemap): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:01:01 +03:00
parent ddc56b8068
commit e33dba1564
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 19 additions and 0 deletions

View File

@ -8785,3 +8785,22 @@ macro takes a first argument (whose value must be an alist) and a body.")
(description "Benchmark Emacs Startup time without ever leaving (description "Benchmark Emacs Startup time without ever leaving
your Emacs.") your Emacs.")
(license license:gpl2+)))) (license license:gpl2+))))
(define-public emacs-sourcemap
(package
(name "emacs-sourcemap")
(version "0.03")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/syohex/emacs-sourcemap/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0bmd5l3cx2iyl7vxn84xdhs80b07kpdpfwki28lh5d0kmm5qs6m6"))))
(build-system emacs-build-system)
(home-page "https://github.com/syohex/emacs-sourcemap")
(synopsis "Sourcemap parser")
(description "Sourcemap parser")
(license license:gpl3+)))