Put in earplugs

This commit is contained in:
nik gaffney 2024-01-04 19:40:35 +01:00
parent 506b6d0b62
commit d63fe7cdeb
Signed by: nik
GPG key ID: 989F5E6EDB478160

View file

@ -355,3 +355,22 @@ documentation about the format, see :
"Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations") "Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations")
(description #f) (description #f)
(license license:bsd-2))) (license license:bsd-2)))
;; via guix import opam menhirLib
(define-public ocaml-menhirLib
(package
(name "ocaml-menhirLib")
(version "20230608")
(source
(origin
(method url-fetch)
(uri
"https://gitlab.inria.fr/fpottier/menhir/-/archive/20230608/archive.tar.gz")
(sha256
(base32 "13mb862c20m1q7vjsa5lgqj3w6b0xhj8ckjyk524wrc4i0s1jzix"))))
(build-system dune-build-system)
(home-page "http://gitlab.inria.fr/fpottier/menhir")
(synopsis "Runtime support library for parsers generated by Menhir")
(description #f)
(license #f)))