gnu: Add ocaml-bigarray-compat.

* gnu/packages/ocaml.scm (ocaml-bigarray-compat): New variable.
This commit is contained in:
Julien Lepiller 2019-04-14 13:54:18 +02:00
parent 57e2b24dc0
commit ce9a30e6f4
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C

View File

@ -867,6 +867,28 @@ Knuths LR(1) parser construction technique.")
(inputs `(("ocaml" ,ocaml-4.02))) (inputs `(("ocaml" ,ocaml-4.02)))
(native-inputs '()))) (native-inputs '())))
(define-public ocaml-bigarray-compat
(package
(name "ocaml-bigarray-compat")
(version "1.0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/mirage/bigarray-compat")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"06j1dwlpisxshdd0nab4n4x266gg1s1n8na16lpgw3fvcznwnimz"))))
(build-system dune-build-system)
(arguments
`(#:tests? #f)); no tests
(home-page "https://github.com/mirage/bigarray-compat")
(synopsis "OCaml compatibility library")
(description "This package contains a compatibility library for
@code{Stdlib.Bigarray} in OCaml.")
(license license:isc)))
(define-public lablgtk (define-public lablgtk
(package (package
(name "lablgtk") (name "lablgtk")