gnu: Add emacs-litable.
* gnu/packages/emacs-xyz.scm (emacs-litable): New variable.
This commit is contained in:
parent
e912affe07
commit
9b99b349ec
|
@ -2554,6 +2554,28 @@ evaluated in the browser, just like Emacs does with an inferior Lisp process
|
||||||
in Lisp modes.")
|
in Lisp modes.")
|
||||||
(license license:unlicense)))
|
(license license:unlicense)))
|
||||||
|
|
||||||
|
(define-public emacs-litable
|
||||||
|
(let ((commit "b0278f3f8dcff424bfbdfdefb545b1fbff33206f"))
|
||||||
|
(package
|
||||||
|
(name "emacs-litable")
|
||||||
|
(version (git-version "0.1" "0" commit))
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/Fuco1/litable.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0bny40hv9a024n01clxns351cs4j4ifhgcc7m4743xncqf612p7g"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("emacs-dash" ,emacs-dash)))
|
||||||
|
(home-page "https://github.com/Fuco1/litable/")
|
||||||
|
(synopsis "Dynamic evaluation replacement with Emacs")
|
||||||
|
(description "This packages provides dynamic evaluation in Emacs.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-string-inflection
|
(define-public emacs-string-inflection
|
||||||
(package
|
(package
|
||||||
(name "emacs-string-inflection")
|
(name "emacs-string-inflection")
|
||||||
|
|
Loading…
Reference in New Issue