[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#33437] [PATCH 09/10] gnu: ocaml-camomile: Use dune-build-system.
From: |
Julien Lepiller |
Subject: |
[bug#33437] [PATCH 09/10] gnu: ocaml-camomile: Use dune-build-system. |
Date: |
Mon, 19 Nov 2018 23:28:20 +0100 |
* gnu/packages/ocaml.scm (ocaml-camomile): Use dune-build-system.
---
gnu/packages/ocaml.scm | 18 +++---------------
1 file changed, 3 insertions(+), 15 deletions(-)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 5ba9a9ad6..896f3840a 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -4376,23 +4376,11 @@ the plugins facilitate extensibility, and the frontends
serve as entry points.")
(sha256
(base32
"01ssjrqz41jvrqh27jxnh9cx7ywi9b5sgsykd00i7z9nrcwhlfy2"))))
- (build-system ocaml-build-system)
+ (build-system dune-build-system)
(native-inputs
- `(("camlp4" ,camlp4)
- ("dune" ,dune)))
+ `(("camlp4" ,camlp4)))
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (replace 'build
- (lambda _
- (invoke "dune" "build" "@install" "--profile" "release")
- #t))
- (replace 'install
- (lambda* (#:key outputs #:allow-other-keys)
- (invoke "dune" "install"
- "--prefix" (assoc-ref outputs "out"))
- #t)))
+ `(#:build-flags (list "--profile" "realease")
#:tests? #f))
(synopsis "Comprehensive Unicode library")
(description "Camomile is a Unicode library for OCaml. Camomile provides
--
2.19.1
- [bug#33437] [PATCH] Add dune-build-system, Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 01/10] build: Add dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 05/10] gnu: ocaml-lwt: Use dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 06/10] gnu: ocaml-lwt-log: Use dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 02/10] gnu: ocaml-migrate-parsetree: Use dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 03/10] gnu: ocaml-ppx-tools-versioned: Use dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 07/10] gnu: ocaml-cppo: Use dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 04/10] gnu: ocaml-bitstring: Use dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 09/10] gnu: ocaml-camomile: Use dune-build-system.,
Julien Lepiller <=
- [bug#33437] [PATCH 08/10] gnu: ocaml-re: Use dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 10/10] gnu: ocaml-lambda-term: Use dune-build-system., Julien Lepiller, 2018/11/19
- [bug#33437] [PATCH 01/10] build: Add dune-build-system., Ludovic Courtès, 2018/11/24