mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
gnu: Add ocaml-guile.
* gnu/packages/ocaml.scm (ocaml-guile): New variable.
This commit is contained in:
parent
5cf9b98d1c
commit
5cd7d7b3a2
1 changed files with 33 additions and 0 deletions
|
@ -8741,3 +8741,36 @@ (define-public ocaml-bibtex2html
|
|||
(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+)))
|
||||
|
|
Loading…
Reference in a new issue