diff options
author | Marius Bakke <marius@gnu.org> | 2022-09-08 21:12:52 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-09-08 21:12:52 +0200 |
commit | 884548b476f2ee27c01cb0c9ad93c0cf9d33fa5e (patch) | |
tree | 20650b3917b1292470ecc4ded13fbb04e5dbfa6d /gnu/packages/ocaml.scm | |
parent | 0e305798454c558ab6e722cf66ba351c326a1a8d (diff) | |
parent | fa894b3f4db835bd0bb52b32c7ec412e72b7e03a (diff) | |
download | guix-884548b476f2ee27c01cb0c9ad93c0cf9d33fa5e.tar.gz |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 0e8e5b2adc..2fd519ca41 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -8741,3 +8741,36 @@ SHA384, SHA512, Blake2b, Blake2s and RIPEMD160.") (description "This package allows you to produce, from a set of bibliography files in BibTeX format, a bibliography in HTML format.") (license license:gpl2))) + +(define-public ocaml-guile + (package + (name "ocaml-guile") + (version "1.0") + (home-page "https://github.com/gopiandcode/guile-ocaml") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0yxdkrhrrbwvay5sn0p26rh3f11876k6kdharmpi4afxknml74ql")))) + (build-system dune-build-system) + (arguments + `(#:tests? #f)) ; no tests + (propagated-inputs + (list ocaml-sexplib + ocaml-ctypes + ocaml-stdio + ocaml-odoc)) + (inputs (list guile-3.0 libffi)) + (native-inputs + (list ocaml-odoc + pkg-config)) + (synopsis "Bindings to GNU Guile Scheme for OCaml") + (description + "The OCaml guile library provides high-level OCaml bindings to GNU Guile +3.0, supporting easy interop between OCaml and GNU Guile Scheme.") + (license license:gpl3+))) |