me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-mew-vi.

* gnu/packages/ocaml.scm (ocaml-mew-vi): New variable.

Signed-off-by: Julien Lepiller <julien@lepiller.eu>
master
zimoun 2021-11-22 18:36:58 +01:00 committed by Julien Lepiller
parent ddea301236
commit ec861f6964
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 26 additions and 0 deletions

View File

@ -7483,6 +7483,32 @@ OCaml.")
modal editing engine generator.")
(license license:expat)))
(define-public ocaml-mew-vi
(package
(name "ocaml-mew-vi")
(version "0.5.0")
(home-page "https://github.com/kandu/mew_vi")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0lihbf822k5zasl60w5mhwmdkljlq49c9saayrws7g4qc1j353r8"))))
(build-system dune-build-system)
(propagated-inputs
`(("ocaml-mew" ,ocaml-mew)
("ocaml-react" ,ocaml-react)))
(native-inputs
`(("ocaml-ppx-expect" ,ocaml-ppx-expect)))
(properties `((upstream-name . "mew_vi")))
(synopsis "Modal editing VI-like editing engine generator")
(description "This module provides a vi-like modal editing engine
generator.")
(license license:expat)))
(define-public ocaml-syntax-shims
(package
(name "ocaml-syntax-shims")