gnu: Add ocaml-gsl-1.

* gnu/packages/ocaml.scm (ocaml-gsl-1): New variable.
This commit is contained in:
Ricardo Wurmus 2019-04-09 14:56:59 +02:00
parent e70771f08e
commit ddb5dc08a7
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 0 deletions

View File

@ -5025,6 +5025,26 @@ Atom.")
the OCaml language.")
(license license:gpl3+)))
(define-public ocaml-gsl-1
(package
(inherit ocaml-gsl)
(version "1.19.3")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/mmottl/gsl-ocaml"
"/releases/download/v"
version "/gsl-ocaml-" version ".tar.gz"))
(sha256
(base32
"0nzp43hp8pbjqkrxnwp5lgjrabxayf61h18fjaydi0s5faq6f3xh"))))
(build-system ocaml-build-system)
(inputs
`(("gsl" ,gsl)))
(native-inputs
`(("ocamlbuild" ,ocamlbuild)))
(arguments '())
(propagated-inputs '())))
(define-public cubicle
(package
(name "cubicle")