guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: Add ocaml-findlib-1.7.3.


From: Ludovic Courtès
Subject: 04/05: gnu: Add ocaml-findlib-1.7.3.
Date: Sat, 28 Oct 2017 04:38:08 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 50856b7342a331c60db1dbd43262f3f10310607b
Author: Peter Kreye <address@hidden>
Date:   Fri Oct 27 18:33:25 2017 -0500

    gnu: Add ocaml-findlib-1.7.3.
    
    * gnu/packages/ocaml.scm (ocaml-findlib-1.7.3): New variable.
    
    Co-authored-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/ocaml.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 712cc91..1b56670 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -897,6 +897,28 @@ compilation and linkage, there are new frontends of the 
various OCaml
 compilers that can directly deal with packages.")
     (license license:x11)))
 
+(define-public ocaml-findlib-1.7.3
+  (package
+    (inherit ocaml-findlib)
+    (version "1.7.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://download.camlcity.org/download/";
+                                  "findlib" "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "12xx8si1qv3xz90qsrpazjjk4lc1989fzm97rsmc4diwla7n15ni"))))
+    (arguments
+     (substitute-keyword-arguments (package-arguments ocaml-findlib)
+       ((#:phases phases)
+        `(modify-phases ,phases
+           (replace 'install
+             (lambda* (#:key outputs #:allow-other-keys)
+               (let ((out (assoc-ref outputs "out")))
+                 (zero? (system* "make" "install"
+                                 (string-append "OCAML_CORE_STDLIB="
+                                                out))))))))))))
+
 (define-public ocaml4.01-findlib
   (package
     (inherit ocaml-findlib)



reply via email to

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