[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/11: gnu: Add ocamlmod.
From: |
David Craven |
Subject: |
10/11: gnu: Add ocamlmod. |
Date: |
Wed, 4 Jan 2017 15:05:59 +0000 (UTC) |
dvc pushed a commit to branch master
in repository guix.
commit 93eeadf0226078a6a9ecf57f84446044b4be249b
Author: Julien Lepiller <address@hidden>
Date: Fri Dec 30 10:52:48 2016 +0100
gnu: Add ocamlmod.
* gnu/packages/ocaml.scm (ocamlmod): New variable.
Signed-off-by: David Craven <address@hidden>
---
gnu/packages/ocaml.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 01587bb..6a12cb4 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -813,3 +813,23 @@ other XUnit testing frameworks.")
JAR format. It provides functions for reading from and writing to compressed
files in these formats.")
(license license:lgpl2.1+)))
+
+(define-public ocamlmod
+ (package
+ (name "ocamlmod")
+ (version "0.0.8")
+ (source (origin
+ (method url-fetch)
+ (uri (ocaml-forge-uri name version 1544))
+ (sha256
+ (base32
+ "1w0w8lfyymvk300dv13gvhrddpcyknvyp4g2yvq2vaw7khkhjs9g"))))
+ (build-system ocaml-build-system)
+ (native-inputs
+ `(("ounit" ,ocaml-ounit)))
+ (arguments
+ `(#:tests? #f)) ; tests are done during build
+ (home-page "https://forge.ocamlcore.org/projects/ocamlmod")
+ (synopsis "Generate modules from OCaml source files")
+ (description "Generate modules from OCaml source files.")
+ (license license:lgpl2.1+))) ; with an exception
- branch master updated (1ff755d -> ddf2b50), David Craven, 2017/01/04
- 04/11: gnu: camlp4: Compile native version., David Craven, 2017/01/04
- 03/11: gnu: ocaml: Fix indentation., David Craven, 2017/01/04
- 06/11: gnu: ocaml: Use a helper function to download from ocaml-forge., David Craven, 2017/01/04
- 09/11: gnu: Add camlzip., David Craven, 2017/01/04
- 02/11: gnu: ocaml: Add CAML_LD_LIBRARY_PATH search-path., David Craven, 2017/01/04
- 10/11: gnu: Add ocamlmod.,
David Craven <=
- 08/11: gnu: Add ocaml-ounit., David Craven, 2017/01/04
- 11/11: gnu: Add ocaml-zarith., David Craven, 2017/01/04
- 07/11: gnu: camlp4: Install camlp4 META file., David Craven, 2017/01/04
- 05/11: gnu: Add ocaml-build-system., David Craven, 2017/01/04
- 01/11: gnu: ocaml: Add a .file directive to generated .s files., David Craven, 2017/01/04