guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: Add ocaml-gsl-1.


From: guix-commits
Subject: 01/05: gnu: Add ocaml-gsl-1.
Date: Thu, 11 Apr 2019 11:22:10 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit ddb5dc08a738d9f6611c710da499363d0e8f9977
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Apr 9 14:56:59 2019 +0200

    gnu: Add ocaml-gsl-1.
    
    * gnu/packages/ocaml.scm (ocaml-gsl-1): New variable.
---
 gnu/packages/ocaml.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 789c828..b466846 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]