[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: gnu: Add ocaml-opam-file-format.
From: |
guix-commits |
Subject: |
03/09: gnu: Add ocaml-opam-file-format. |
Date: |
Wed, 10 Apr 2019 15:40:07 -0400 (EDT) |
roptat pushed a commit to branch master
in repository guix.
commit d1358ab6339b83ed84089f70d9ed4b55d860df07
Author: Julien Lepiller <address@hidden>
Date: Wed Apr 3 20:44:56 2019 +0200
gnu: Add ocaml-opam-file-format.
* gnu/packages/ocaml.scm (ocaml-opam-file-format): New variable.
---
gnu/packages/ocaml.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 7bebf39..3b98de3 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -302,6 +302,33 @@ functional, imperative and object-oriented styles of
programming.")
for building OCaml library and programs.")
(license license:lgpl2.1+)))
+(define-public ocaml-opam-file-format
+ (package
+ (name "ocaml-opam-file-format")
+ (version "2.0.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ocaml/opam-file-format")
+ (commit version)))
+ (sha256
+ (base32
+ "0fqb99asnair0043hhc8r158d6krv5nzvymd0xwycr5y72yrp0hv"))))
+ (build-system ocaml-build-system)
+ (arguments
+ `(#:tests? #f; No tests
+ #:make-flags (list (string-append "LIBDIR=" (assoc-ref %outputs "out")
+ "/lib/ocaml/site-lib"))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (home-page "https://opam.ocaml.org")
+ (synopsis "Parser and printer for the opam file syntax")
+ (description "This package contains a parser and a pretty-printer for
+the opam file fomat.")
+ ;; With static-linking exception
+ (license license:lgpl2.1+)))
+
(define-public opam
(package
(name "opam")
- branch master updated (81a9ab8 -> e9b86fa), guix-commits, 2019/04/10
- 05/09: gnu: Add ocaml-extlib., guix-commits, 2019/04/10
- 06/09: gnu: Add ocaml-cudf., guix-commits, 2019/04/10
- 03/09: gnu: Add ocaml-opam-file-format.,
guix-commits <=
- 09/09: gnu: opam: Unbundle dependencies., guix-commits, 2019/04/10
- 07/09: gnu: Add ocaml-mccs., guix-commits, 2019/04/10
- 02/09: import: opam: Use dune-build-system when possible., guix-commits, 2019/04/10
- 01/09: import: opam: Add more patterns to opam file parser., guix-commits, 2019/04/10
- 08/09: gnu: Add ocaml-dose3., guix-commits, 2019/04/10
- 04/09: gnu: ocaml-cmdliner: Update to 1.0.3., guix-commits, 2019/04/10