[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/10: gnu: Add ocaml-batteries.
From: |
julien lepiller |
Subject: |
04/10: gnu: Add ocaml-batteries. |
Date: |
Tue, 31 Jan 2017 20:36:12 +0000 (UTC) |
roptat pushed a commit to branch master
in repository guix.
commit 0e9e94b7ffe25d11c55f79f7c08a4bc69df95632
Author: Julien Lepiller <address@hidden>
Date: Mon Jan 2 12:42:29 2017 +0100
gnu: Add ocaml-batteries.
* gnu/packages/ocaml.scm (ocaml-batteries): New variable.
---
gnu/packages/ocaml.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 2ba9a7e..a904a86 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -1796,3 +1796,32 @@ many additional enhancements, including:
license:expat ; OMake scripts
license:gpl2)))) ; OMake itself, with ocaml linking
exception
; see LICENSE.OMake
+
+(define-public ocaml-batteries
+ (package
+ (name "ocaml-batteries")
+ (version "2.5.3")
+ (source (origin
+ (method url-fetch)
+ (uri (ocaml-forge-uri "batteries" version 1650))
+ (sha256
+ (base32
+ "1a97w3x2l1jr5x9kj5gqm1x6b0q9fjqdcsvls7arnl3bvzgsia0n"))))
+ (build-system ocaml-build-system)
+ (native-inputs
+ `(("qtest" ,ocaml-qtest)
+ ("bisect" ,ocaml-bisect)
+ ("ounit" ,ocaml-ounit)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (delete 'check) ; tests are run by the build phase
+ (replace 'build
+ (lambda* (#:key outputs #:allow-other-keys)
+ (zero? (system* "ocaml" "setup.ml" "-build")))))))
+ (home-page "http://batteries.forge.ocamlcore.org/")
+ (synopsis "Development platform for the OCaml programming language")
+ (description "Define a standard set of libraries which may be expected on
+every compliant installation of OCaml and organize these libraries into a
+hierarchy of modules.")
+ (license license:lgpl2.1+)))
- branch master updated (59ae241 -> f5c8cf3), julien lepiller, 2017/01/31
- 05/10: gnu: Add ocaml-pcre., julien lepiller, 2017/01/31
- 06/10: gnu: Add ocaml-expect., julien lepiller, 2017/01/31
- 07/10: gnu: Add ocaml-fileutils., julien lepiller, 2017/01/31
- 09/10: gnu: Add ocaml-js-build-tools., julien lepiller, 2017/01/31
- 03/10: gnu: Add omake., julien lepiller, 2017/01/31
- 01/10: gnu: Add ocaml-base64., julien lepiller, 2017/01/31
- 08/10: gnu: Add ocaml-oasis., julien lepiller, 2017/01/31
- 10/10: gnu: Add ocaml-bin-prot., julien lepiller, 2017/01/31
- 02/10: gnu: Add ocamlify., julien lepiller, 2017/01/31
- 04/10: gnu: Add ocaml-batteries.,
julien lepiller <=