summaryrefslogtreecommitdiff
path: root/gnu/packages/ocaml.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-12-13 17:18:24 +0100
committerLudovic Courtès <ludo@gnu.org>2021-12-13 17:48:25 +0100
commit8394619baceb118df92e355377fd543bb1aa501a (patch)
tree504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/ocaml.scm
parentaca2defe0172868295941fd9f0e97886f6e9b2d4 (diff)
downloadguix-patches-8394619baceb118df92e355377fd543bb1aa501a.tar
guix-patches-8394619baceb118df92e355377fd543bb1aa501a.tar.gz
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r--gnu/packages/ocaml.scm781
1 files changed, 304 insertions, 477 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 909728fc66..da378febf2 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -163,7 +163,7 @@
(rename-file "miniml/interp/lex.byte" "ocamllex")
(install-file "ocamllex" bin)))))))
(native-inputs
- `(("guile" ,guile-3.0)))
+ (list guile-3.0))
(properties
;; 10 hours, mostly for arm, more than 1 expected even on x86_64
`((max-silent-time . 36000)))
@@ -205,12 +205,10 @@ This package produces a native @command{ocamlc} and a bytecode @command{ocamllex
(files (list "lib/ocaml/site-lib/stubslibs"
"lib/ocaml/site-lib/stublibs")))))
(native-inputs
- `(("perl" ,perl)
- ("pkg-config" ,pkg-config)))
+ (list perl pkg-config))
(inputs
- `(("libx11" ,libx11)
- ("libiberty" ,libiberty) ;needed for objdump support
- ("zlib" ,zlib))) ;also needed for objdump support
+ (list libx11 libiberty ;needed for objdump support
+ zlib)) ;also needed for objdump support
(arguments
`(#:phases
(modify-phases %standard-phases
@@ -533,7 +531,7 @@ archive(byte) = \"com.cma\"
archive(native) = \"com.cmxa\"")))))
#t)))))
(native-inputs
- `(("ocaml" ,ocaml)))
+ (list ocaml))
(home-page "https://github.com/xavierleroy/camlidl")
(synopsis "Stub code generator for OCaml/C interface")
(description
@@ -558,7 +556,7 @@ code for interfacing Caml with C from an IDL description of the C functions.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("ocaml-cppo" ,ocaml-cppo)))
+ (list ocaml-cppo))
(home-page "https://github.com/ygrek/ocaml-extlib")
(synopsis "Complete and small extension for OCaml standard library")
(description "This library adds new functions to OCaml standard library
@@ -580,11 +578,9 @@ for day to day programming.")
(base32
"0771lwljqwwn3cryl0plny5a5dyyrj4z6bw66ha5n8yfbpcy8clr"))))
(build-system ocaml-build-system)
- (propagated-inputs `(("ocaml-extlib" ,ocaml-extlib)))
+ (propagated-inputs (list ocaml-extlib))
(native-inputs
- `(("perl" ,perl)
- ("ocamlbuild" ,ocamlbuild)
- ("ocaml-ounit" ,ocaml-ounit)))
+ (list perl ocamlbuild ocaml-ounit))
(arguments
`(#:make-flags
,#~(list
@@ -615,7 +611,7 @@ Software distribution.")
(base32
"1gsad5cj03256i36wdjqk5pg51pyd48rpjazf0gfaakrn8lk438g"))))
(build-system dune-build-system)
- (propagated-inputs `(("ocaml-cudf" ,ocaml-cudf)))
+ (propagated-inputs (list ocaml-cudf))
(home-page "https://www.i3s.unice.fr/~cpjm/misc/")
(synopsis "Upgrade path problem solver")
(description "Mccs (Multi Criteria CUDF Solver) is a CUDF problem solver.
@@ -654,10 +650,7 @@ underlying solvers like Cplex, Gurobi, Lpsolver, Glpk, CbC, SCIP or WBO.")
#:make-flags
,#~(list (string-append "LIBDIR=" #$output "/lib/ocaml/site-lib"))))
(propagated-inputs
- `(("ocaml-graph" ,ocaml-graph)
- ("ocaml-cudf" ,ocaml-cudf)
- ("ocaml-extlib" ,ocaml-extlib)
- ("ocaml-re" ,ocaml-re)))
+ (list ocaml-graph ocaml-cudf ocaml-extlib ocaml-re))
(native-inputs
`(("perl" ,perl)
("python" ,python-2) ; for a test script
@@ -700,10 +693,7 @@ repository-wide uninstallability checks.")
,#~(list "build" "--lib-dir"
(string-append #$output "/lib/ocaml/site-lib"))))
(native-inputs
- `(("ocaml-findlib" ,ocaml-findlib)
- ("ocamlbuild" ,ocamlbuild)
- ("ocaml-topkg" ,ocaml-topkg)
- ("opam" ,opam)))
+ (list ocaml-findlib ocamlbuild ocaml-topkg opam))
(home-page "https://erratique.ch/software/down")
(synopsis "OCaml toplevel (REPL) upgrade")
(description "Down is an unintrusive user experience upgrade for the
@@ -875,16 +865,10 @@ the opam file format.")
("opam-repo-f372039d" ,(opam-repo "f372039db86a970ef3e662adbfe0d4f5cd980701"
"0ld7fcry6ss6fmrpswvr6bikgx299w97h0gwrjjh7kd7rydsjdws")))))
(inputs
- `(("ocaml" ,ocaml)
- ("ncurses" ,ncurses)
- ("curl" ,curl)
- ("bubblewrap" ,bubblewrap)))
+ (list ocaml ncurses curl bubblewrap))
(propagated-inputs
- `(("ocaml-cmdliner" ,ocaml-cmdliner)
- ("ocaml-dose3" ,ocaml-dose3)
- ("ocaml-mccs" ,ocaml-mccs)
- ("ocaml-opam-file-format" ,ocaml-opam-file-format)
- ("ocaml-re" ,ocaml-re)))
+ (list ocaml-cmdliner ocaml-dose3 ocaml-mccs ocaml-opam-file-format
+ ocaml-re))
(home-page "http://opam.ocamlpro.com/")
(synopsis "Package manager for OCaml")
(description
@@ -910,7 +894,7 @@ Git-friendly development workflow.")
(base32 "1d9spy3f5ahixm8nxxk086kpslzva669a5scn49am0s7vx4i71kp"))))
(build-system gnu-build-system)
(inputs
- `(("ocaml" ,ocaml)))
+ (list ocaml))
(arguments
`(#:tests? #f ; XXX TODO figure out how to run the tests
#:phases
@@ -962,9 +946,9 @@ concrete syntax of the language (Quotations, Syntax Extensions).")
"1jwydkb9ldb1sx815c364dxgr569f2rbbzgxbn2kanrybpdbm2gi"))))
(build-system gnu-build-system)
(inputs
- `(("ocaml" ,ocaml)))
+ (list ocaml))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)))
+ (list ocamlbuild))
(arguments
`(#:tests? #f ; no test suite
#:make-flags (list (string-append "PREFIX=" %output))
@@ -1068,7 +1052,7 @@ Emacs.")
(base32 "08kf5apbv15n2kcr3qhyr3rvsf2lg25ackr3x9kfgiiqc0p3sz40"))))
(build-system dune-build-system)
(inputs
- `(("ocaml" ,ocaml)))
+ (list ocaml))
(arguments
`(#:tests? #f)) ; No check target
(properties `((ocaml4.07-variant . ,(delay (strip-ocaml4.07-variant ocaml-menhir)))))
@@ -1126,12 +1110,12 @@ Knuth’s LR(1) parser construction technique.")
;; FIXME: Add inputs gtkgl-2.0, libpanelapplet-2.0, gtkspell-2.0,
;; and gtk+-quartz-2.0 once available.
(inputs
- `(("gtk+" ,gtk+-2)
- ("gtksourceview" ,gtksourceview-2)
- ("libgnomecanvas" ,libgnomecanvas)
- ("libgnomeui" ,libgnomeui)
- ("libglade" ,libglade)
- ("librsvg" ,librsvg)))
+ (list gtk+-2
+ gtksourceview-2
+ libgnomecanvas
+ libgnomeui
+ libglade
+ librsvg))
(arguments
`(#:tests? #f ; no check target
@@ -1277,8 +1261,7 @@ to the other.")
"00s3sfb02pnjmkax25pcnljcnhcggiliccfz69a72ic7gsjwz1cf"))))
(build-system gnu-build-system)
(native-inputs
- `(("m4" ,m4)
- ("ocaml" ,ocaml)))
+ (list m4 ocaml))
(arguments
`(#:tests? #f ; no test suite
#:parallel-build? #f
@@ -1321,16 +1304,14 @@ compilers that can directly deal with packages.")
(inherit ocaml-findlib)
(name "ocaml4.07-findlib")
(native-inputs
- `(("m4" ,m4)
- ("ocaml" ,ocaml-4.07)))))
+ (list m4 ocaml-4.07))))
(define-public ocaml4.09-findlib
(package
(inherit ocaml-findlib)
(name "ocaml4.09-findlib")
(native-inputs
- `(("m4" ,m4)
- ("ocaml" ,ocaml-4.09)))))
+ (list m4 ocaml-4.09))))
(define-public ocaml-ounit2
(package
@@ -1368,7 +1349,7 @@ to JUnit and other XUnit testing frameworks.")
(invoke "make" "install-ounit" ,(string-append "version="
(package-version ocaml-ounit2))))))))
(propagated-inputs
- `(("ocaml-ounit2" ,ocaml-ounit2)))
+ (list ocaml-ounit2))
(home-page "http://ounit.forge.ocamlcore.org")
(synopsis "Unit testing framework for OCaml")
(description "Unit testing framework for OCaml. It is similar to JUnit and
@@ -1392,7 +1373,7 @@ other XUnit testing frameworks.")
"16jnn3czxnvyjngnz167x5kw097k7izdqvkix8qvgvhdmgvqm89b"))))
(build-system ocaml-build-system)
(inputs
- `(("zlib" ,zlib)))
+ (list zlib))
(arguments
`(#:phases
(modify-phases %standard-phases
@@ -1447,9 +1428,9 @@ files in these formats.")
"1jslm1rv1j0ya818yh23wf3bb6hz7qqj9pn5fwl45y9mqyqa01s9"))))
(build-system ocaml-build-system)
(native-inputs
- `(("perl" ,perl)))
+ (list perl))
(inputs
- `(("gmp" ,gmp)))
+ (list gmp))
(arguments
`(#:tests? #f ; no test target
#:phases
@@ -1493,8 +1474,7 @@ for speed and space economy.")
(lambda _
(for-each make-file-writable (find-files "." ".")))))))
(native-inputs
- `(("ocaml-menhir" ,ocaml-menhir)
- ("ocaml-odoc" ,ocaml-odoc)))
+ (list ocaml-menhir ocaml-odoc))
(properties `((upstream-name . "FrontC")
(ocaml4.07-variant . ,(delay ocaml4.07-frontc))))
(home-page "https://www.irit.fr/FrontC")
@@ -1569,10 +1549,9 @@ archive(native) = \"frontc.cmxa\""))))
(("Pervasives.compare") "compare"))
#t)))))
(propagated-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)
- ("ocaml-ounit" ,ocaml-ounit)))
+ (list ocaml-alcotest ocaml-ounit))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)))
+ (list ocamlbuild))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-qcheck))))
(home-page "https://github.com/c-cube/qcheck")
(synopsis "QuickCheck inspired property-based testing for OCaml")
@@ -1701,7 +1680,7 @@ following a very simple s-expression syntax.")
; require ppx_expect
#:tests? #f))
(propagated-inputs
- `(("ocaml-csexp" ,ocaml-csexp)))
+ (list ocaml-csexp))
(properties `((ocaml4.09-variant . ,(delay ocaml4.09-dune-configurator))))
(synopsis "Dune helper library for gathering system configuration")
(description "Dune-configurator is a small library that helps writing
@@ -1732,7 +1711,7 @@ config.h files for instance. Among other things, dune-configurator allows one t
(package
(inherit dune-bootstrap)
(propagated-inputs
- `(("dune-configurator" ,dune-configurator)))
+ (list dune-configurator))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-dune))
(ocaml4.09-variant . ,(delay ocaml4.09-dune))))))
@@ -1740,7 +1719,7 @@ config.h files for instance. Among other things, dune-configurator allows one t
(package
(inherit ocaml4.09-dune-bootstrap)
(propagated-inputs
- `(("dune-configurator" ,dune-configurator)))))
+ (list dune-configurator))))
(define-public ocaml4.07-dune
(package
@@ -1780,7 +1759,7 @@ config.h files for instance. Among other things, dune-configurator allows one t
(for-each (lambda (file) (chmod file #o644)) (find-files "." ".*"))
#t)))))
(propagated-inputs
- `(("ocaml-result" ,ocaml-result)))
+ (list ocaml-result))
(properties `((ocaml4.09-variant . ,(delay ocaml4.09-csexp))))
(home-page "https://github.com/ocaml-dune/csexp")
(synopsis "Parsing and printing of S-expressions in Canonical form")
@@ -1828,9 +1807,7 @@ module of this library is parameterised by the type of S-expressions.")
(build-system dune-build-system)
(arguments `(#:tests? #f))
(propagated-inputs
- `(("ocaml-ppx-derivers" ,ocaml-ppx-derivers)
- ("ocamlbuild" ,ocamlbuild)
- ("ocaml-result" ,ocaml-result)))
+ (list ocaml-ppx-derivers ocamlbuild ocaml-result))
(properties `((upstream-name . "ocaml-migrate-parsetree")
;; OCaml 4.07 packages require version 1.*
(ocaml4.07-variant . ,(delay (package-with-ocaml4.07 ocaml-migrate-parsetree-1)))))
@@ -1899,11 +1876,9 @@ ocaml-migrate-parsetree")
"0mghsl8b2zd2676mh1r9142hymhvzy9cw8kgkjmirxkn56wbf56b"))))
(build-system dune-build-system)
(native-inputs
- `(("time" ,time)
- ("autoconf" ,autoconf)
- ("automake" ,automake)))
+ (list time autoconf automake))
(propagated-inputs
- `(("ocaml-stdlib-shims" ,ocaml-stdlib-shims)))
+ (list ocaml-stdlib-shims))
(arguments
`(#:package "bitstring"
#:tests? #f; Tests fail to build
@@ -1988,8 +1963,7 @@ defined in this library.")
"1kzw5cxkizcvh4rgzwgpjlj9hfxfk6yr686bxx6wrbsfs8as371k"))))
(build-system ocaml-build-system)
(native-inputs
- `(("opam" ,opam)
- ("ocamlbuild" ,ocamlbuild)))
+ (list opam ocamlbuild))
(propagated-inputs
`(("result" ,ocaml-result)))
(arguments
@@ -2019,8 +1993,7 @@ creation and publication procedures.")
"1xxycxhdhaq8p9vhwi93s2mlxjwgm44fcxybx5vghzgbankz9yhm"))))
(build-system ocaml-build-system)
(native-inputs
- `(("opam" ,opam)
- ("ocamlbuild" ,ocamlbuild)))
+ (list opam ocamlbuild))
(propagated-inputs
`(("topkg" ,ocaml-topkg)))
(arguments
@@ -2054,12 +2027,9 @@ library.")
(build-system dune-build-system)
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-sqlite3))))
(propagated-inputs
- `(("dune-configurator" ,dune-configurator)
- ("ocaml-odoc" ,ocaml-odoc)))
+ (list dune-configurator ocaml-odoc))
(native-inputs
- `(("ocaml-ppx-inline-test" ,ocaml-ppx-inline-test)
- ("pkg-config" ,pkg-config)
- ("sqlite" ,sqlite)))
+ (list ocaml-ppx-inline-test pkg-config sqlite))
(home-page "https://mmottl.github.io/sqlite3-ocaml")
(synopsis "SQLite3 Bindings for OCaml")
(description
@@ -2128,8 +2098,7 @@ manipulate such data.")
"0syilgk4nzscacsswnvgwqlf0n0lhs221jss8gc8z9igw2x4sgsq"))))
(build-system ocaml-build-system)
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("opam" ,opam)))
+ (list ocamlbuild opam))
(propagated-inputs
`(("topkg" ,ocaml-topkg)))
(arguments
@@ -2181,8 +2150,7 @@ spans without being subject to operating system calendar time adjustments.")
(mkdir-p (string-append
out "/lib/ocaml/site-lib/calendar"))))))))
(native-inputs
- `(("autoconf" ,autoconf)
- ("automake" ,automake)))
+ (list autoconf automake))
(propagated-inputs
`(("ocaml" ,ocaml)
("ocamlfind" ,ocaml-findlib)))
@@ -2206,9 +2174,9 @@ dates and times.")
"1h04q0zkasd0mw64ggh4y58lgzkhg6yhzy60lab8k8zq9ba96ajw"))))
(build-system ocaml-build-system)
(inputs
- `(("ocaml-result" ,ocaml-result)))
+ (list ocaml-result))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)))
+ (list ocamlbuild))
(arguments
`(#:tests? #f
#:make-flags ,#~(list (string-append "LIBDIR=" #$output
@@ -2330,15 +2298,15 @@ immutability.")
`(#:package "alcotest"
#:test-target "."))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)))
+ (list ocamlbuild))
(propagated-inputs
- `(("ocaml-astring" ,ocaml-astring)
- ("ocaml-cmdliner" ,ocaml-cmdliner)
- ("ocaml-fmt" ,ocaml-fmt)
- ("ocaml-re" ,ocaml-re)
- ("ocaml-stdlib-shims" ,ocaml-stdlib-shims)
- ("ocaml-uuidm" ,ocaml-uuidm)
- ("ocaml-uutf" ,ocaml-uutf)))
+ (list ocaml-astring
+ ocaml-cmdliner
+ ocaml-fmt
+ ocaml-re
+ ocaml-stdlib-shims
+ ocaml-uuidm
+ ocaml-uutf))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-alcotest))))
(home-page "https://github.com/mirage/alcotest")
(synopsis "Lightweight OCaml test framework")
@@ -2385,7 +2353,7 @@ simple (yet expressive) query language to select the tests to run.")
;; No tests
`(#:tests? #f))
(native-inputs
- `(("ocaml-cppo" ,ocaml-cppo)))
+ (list ocaml-cppo))
(properties `((upstream-name . "ppx_tools")))
(home-page "https://github.com/alainfrisch/ppx_tools")
(synopsis "Tools for authors of ppx rewriters and other syntactic tools")
@@ -2407,9 +2375,7 @@ syntactic tools.")
"1aj8w79gdd9xnrbz7s5p8glcb4pmimi8jp9f439dqnf6ih3mqb3v"))))
(build-system ocaml-build-system)
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("opam" ,opam)
- ("ocaml-topkg" ,ocaml-topkg)))
+ (list ocamlbuild opam ocaml-topkg))
(arguments
`(#:tests? #f
#:build-flags (list "build")
@@ -2441,10 +2407,8 @@ lets the client choose the concrete timeline.")
(arguments
`(#:test-target "."))
(native-inputs
- `(("autoconf" ,autoconf)
- ("automake" ,automake)
- ("which" ,which)))
- (propagated-inputs `(("openssl" ,openssl)))
+ (list autoconf automake which))
+ (propagated-inputs (list openssl))
(home-page "https://github.com/savonet/ocaml-ssl/")
(synopsis "OCaml bindings for OpenSSL")
(description
@@ -2490,16 +2454,11 @@ for mapping files in memory. This function is the same as the
(arguments
`(#:package "lwt"))
(native-inputs
- `(("ocaml-cppo" ,ocaml-cppo)
- ("pkg-config" ,pkg-config)))
+ (list ocaml-cppo pkg-config))
(inputs
- `(("glib" ,glib)))
+ (list glib))
(propagated-inputs
- `(("ocaml-mmap" ,ocaml-mmap)
- ("ocaml-ocplib-endian" ,ocaml-ocplib-endian)
- ("ocaml-result" ,ocaml-result)
- ("ocaml-seq" ,ocaml-seq)
- ("libev" ,libev)))
+ (list ocaml-mmap ocaml-ocplib-endian ocaml-result ocaml-seq libev))
(home-page "https://github.com/ocsigen/lwt")
(synopsis "Cooperative threads and I/O in monadic style")
(description "Lwt provides typed, composable cooperative threads. These
@@ -2527,8 +2486,7 @@ locks or other synchronization primitives.")
`(#:package "lwt_react"))
(properties `((upstream-name . "lwt_react")))
(propagated-inputs
- `(("ocaml-lwt" ,ocaml-lwt)
- ("ocaml-react" ,ocaml-react)))))
+ (list ocaml-lwt ocaml-react))))
(define-public ocaml-lwt-log
(package
@@ -2574,8 +2532,7 @@ ocaml lwt.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("opam" ,opam)))
+ (list ocamlbuild opam))
(propagated-inputs
`(("fmt" ,ocaml-fmt)
("lwt" ,ocaml-lwt)
@@ -2609,8 +2566,7 @@ message report is decoupled from logging and is handled by a reporter.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("opam" ,opam)))
+ (list ocamlbuild opam))
(propagated-inputs
`(("topkg" ,ocaml-topkg)
("astring" ,ocaml-astring)))
@@ -2640,8 +2596,7 @@ file system and is independent from any system library.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("opam" ,opam)))
+ (list ocamlbuild opam))
(propagated-inputs
`(("topkg" ,ocaml-topkg)
("astring" ,ocaml-astring)
@@ -2676,9 +2631,7 @@ run command line programs.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("ocaml-topkg" ,ocaml-topkg)
- ("opam" ,opam)))
+ (list ocamlbuild ocaml-topkg opam))
(home-page "https://erratique.ch/software/xmlm")
(synopsis "Streaming XML codec for OCaml")
(description "Xmlm is a streaming codec to decode and encode the XML data
@@ -2704,10 +2657,9 @@ representation of the data.")
`(#:package "gen"
#:test-target "."))
(propagated-inputs
- `(("ocaml-odoc" ,ocaml-odoc)))
+ (list ocaml-odoc))
(native-inputs
- `(("ocaml-qtest" ,ocaml-qtest)
- ("ocaml-qcheck" ,ocaml-qcheck)))
+ (list ocaml-qtest ocaml-qcheck))
(home-page "https://github.com/c-cube/gen/")
(synopsis "Iterators for OCaml, both restartable and consumable")
(description "Gen implements iterators of OCaml, that are both restartable
@@ -2751,9 +2703,7 @@ and consumable.")
(for-each (lambda (file) (chmod file #o644)) (find-files "." ".*"))
#t)))))
(propagated-inputs
- `(("ocaml-gen" ,ocaml-gen)
- ("ocaml-ppxlib" ,ocaml-ppxlib)
- ("ocaml-uchar" ,ocaml-uchar)))
+ (list ocaml-gen ocaml-ppxlib ocaml-uchar))
;; These three files are needed by src/generator/data/dune, but would be
;; downloaded using curl at build time.
(inputs
@@ -2823,8 +2773,7 @@ and consumable.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("opam" ,opam)))
+ (list ocamlbuild opam))
(home-page "https://github.com/ocaml/uchar")
(synopsis "Compatibility library for OCaml's Uchar module")
(description "The uchar package provides a compatibility library for the
@@ -2904,7 +2853,7 @@ string values and to directly encode characters in OCaml Buffer.t values.")
(file-name (string-append "NormalizationTest-" version ".txt"))
(sha256
(base32 "0c93pqdkksf7b7zw8y2w0h9i5kkrsdjmh2cr5clrrhp6mg10rcvw"))))))
- (propagated-inputs `(("ocaml-uutf" ,ocaml-uutf)))
+ (propagated-inputs (list ocaml-uutf))
(home-page "https://erratique.ch/software/uunf")
(synopsis "Unicode text normalization for OCaml")
(description
@@ -2964,7 +2913,7 @@ without a complete in-memory representation of the data.")
(arguments
`(#:test-target "tests"))
(propagated-inputs
- `(("ocaml-cmdliner" ,ocaml-cmdliner)))
+ (list ocaml-cmdliner))
(home-page "https://www.typerex.org/ocp-indent.html")
(synopsis "Tool to indent OCaml programs")
(description
@@ -3001,11 +2950,9 @@ This package includes:
(arguments
`(#:package "ocp-index"))
(propagated-inputs
- `(("ocaml-ocp-indent" ,ocaml-ocp-indent)
- ("ocaml-re" ,ocaml-re)
- ("ocaml-cmdliner" ,ocaml-cmdliner)))
+ (list ocaml-ocp-indent ocaml-re ocaml-cmdliner))
(native-inputs
- `(("ocaml-cppo" ,ocaml-cppo)))
+ (list ocaml-cppo))
(home-page "https://www.typerex.org/ocp-index.html")
(synopsis "Lightweight completion and documentation browsing for OCaml libraries")
(description "This package includes only the @code{ocp-index} library
@@ -3036,8 +2983,8 @@ and command-line tool.")
(substitute* "configure"
(("-/bin/sh") (string-append "-" (which "bash")))))))))
(native-inputs
- `(("pkg-config" ,pkg-config)))
- (inputs `(("curl" ,curl)))
+ (list pkg-config))
+ (inputs (list curl))
(home-page "http://ocurl.forge.ocamlcore.org/")
(synopsis "OCaml bindings for libcurl")
(description "Client-side URL transfer library, supporting HTTP and a
@@ -3059,9 +3006,7 @@ multitude of other network protocols (FTP/SMTP/RTSP/etc).")
"068hwdbpl7vx9jjpxdc6a10zqd8xa55j3xx7ga6fnwrlfsbs2pjj"))))
(build-system dune-build-system)
(native-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)
- ("ocaml-bos" ,ocaml-bos)
- ("ocaml-rresult" ,ocaml-rresult)))
+ (list ocaml-alcotest ocaml-bos ocaml-rresult))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-base64))))
(home-page "https://github.com/mirage/ocaml-base64")
(synopsis "Base64 encoding for OCaml")
@@ -3155,7 +3100,7 @@ OCaml code.")
(lambda* (#:key outputs #:allow-other-keys)
(substitute* "mk/osconfig_unix.mk"
(("CC = cc") "CC = gcc")))))))
- (native-inputs `(("hevea" ,hevea)))
+ (native-inputs (list hevea))
(home-page "http://projects.camlcity.org/projects/omake.html")
(synopsis "Build system designed for scalability and portability")
(description "Similar to make utilities you may have used, but it features
@@ -3213,12 +3158,9 @@ is used to determine whether the results truly differ.")
(base32
"1h03nkc3vajaijqhj1dy5hw85j2hwwxdkg8rvs2fc00qaf44ad1d"))))
(build-system ocaml-build-system)
- (propagated-inputs `(("ocaml-num" ,ocaml-num)))
+ (propagated-inputs (list ocaml-num))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("ocaml-benchmark" ,ocaml-benchmark)
- ("ocaml-qcheck" ,ocaml-qcheck)
- ("ocaml-qtest" ,ocaml-qtest)))
+ (list ocamlbuild ocaml-benchmark ocaml-qcheck ocaml-qtest))
(arguments
`(#:phases
(modify-phases %standard-phases
@@ -3306,8 +3248,7 @@ hierarchy of modules.")
;; No tests.
'(#:tests? #f))
(propagated-inputs
- `(("dune-configurator" ,dune-configurator)
- ("pcre" ,pcre)))
+ (list dune-configurator pcre))
(native-inputs
`(("pcre:bin" ,pcre "bin")))
(home-page "https://mmottl.github.io/pcre-ocaml")
@@ -3383,9 +3324,9 @@ compatibility with older compiler to use these new features in their code.")
"0aa7p5qymi8p7iqym42yk2akjd1ff81fvaks82nhjc533zl01pnf"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-stdlib-shims" ,ocaml-stdlib-shims)))
+ (list ocaml-stdlib-shims))
(native-inputs
- `(("ocaml-ounit" ,ocaml-ounit)))
+ (list ocaml-ounit))
(home-page "http://ocaml-fileutils.forge.ocamlcore.org")
(synopsis "Pure OCaml functions to manipulate real file and filename")
(description "Library to provide pure OCaml functions to manipulate real
@@ -3421,9 +3362,7 @@ file (POSIX like) and filename.")
(arguments
`(#:tests? #f))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("ocamlify" ,ocamlify)
- ("ocamlmod" ,ocamlmod)))
+ (list ocamlbuild ocamlify ocamlmod))
(home-page "https://oasis.forge.ocamlcore.org")
(synopsis "Integrates a configure, build, install system in OCaml projects")
(description "OASIS is a tool to integrate a configure, build and install
@@ -3448,7 +3387,7 @@ build system and allows external tools to analyse your project easily.")
(arguments
`(#:tests? #f))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)))
+ (list ocamlbuild))
(home-page "https://github.com/mjambon/cppo")
(synopsis "Equivalent of the C preprocessor for OCaml programs")
(description "Cppo is an equivalent of the C preprocessor for OCaml
@@ -3516,7 +3455,7 @@ standard iterator type starting from 4.07.")
(arguments
`(#:test-target "."))
(propagated-inputs
- `(("ocaml-seq" ,ocaml-seq)))
+ (list ocaml-seq))
(native-inputs
`(("ounit" ,ocaml-ounit)))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-re))))
@@ -3590,9 +3529,9 @@ big- and little-endian, with their unsafe counter-parts.")
`(#:package "cstruct"
#:test-target "."))
(propagated-inputs
- `(("ocaml-bigarray-compat" ,ocaml-bigarray-compat)))
+ (list ocaml-bigarray-compat))
(native-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)))
+ (list ocaml-alcotest))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-cstruct))))
(home-page "https://github.com/mirage/ocaml-cstruct")
(synopsis "Access C structures via a camlp4 extension")
@@ -3694,11 +3633,9 @@ JSON.")
(arguments '(#:package "uri"
#:test-target "."))
(propagated-inputs
- `(("ocaml-stringext" ,ocaml-stringext)
- ("ocaml-angstrom" ,ocaml-angstrom)))
+ (list ocaml-stringext ocaml-angstrom))
(native-inputs
- `(("ocaml-ounit" ,ocaml-ounit)
- ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)))
+ (list ocaml-ounit ocaml-ppx-sexp-conv))
(properties `((upstream-name . "uri")
(ocaml4.07-variant ,(delay ocaml4.07-uri))))
(synopsis "RFC3986 URI/URL parsing library")
@@ -3824,7 +3761,7 @@ Format module of the OCaml standard library.")
#:ocaml ,ocaml-4.07
#:findlib ,ocaml4.07-findlib))
(native-inputs
- `(("which" ,which)))
+ (list which))
(propagated-inputs
`(("ocaml-xmlm" ,(package-with-ocaml4.07 ocaml-xmlm))
("ocaml-sedlex" ,(package-with-ocaml4.07 ocaml-sedlex))
@@ -3855,8 +3792,7 @@ tool and piqi-ocaml.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("opam" ,opam)))
+ (list ocamlbuild opam))
(propagated-inputs
`(("cmdliner" ,ocaml-cmdliner)
("topkg" ,ocaml-topkg)))
@@ -3888,7 +3824,7 @@ and 4 (random based) according to RFC 4122.")
(lambda* (#:key inputs #:allow-other-keys)
(setenv "CONFIG_SHELL"
(search-input-file inputs "/bin/sh")))))))
- (inputs `(("lablgtk" ,lablgtk)))
+ (inputs (list lablgtk))
(properties `((upstream-name . "ocamlgraph")))
(home-page "http://ocamlgraph.lri.fr/")
(synopsis "Graph library for OCaml")
@@ -3925,8 +3861,7 @@ and 4 (random based) according to RFC 4122.")
#:ocaml ,ocaml-4.07
#:findlib ,ocaml4.07-findlib))
(native-inputs
- `(("which" ,which)
- ("protobuf" ,protobuf))) ; for tests
+ (list which protobuf)) ; for tests
(propagated-inputs
`(("ocaml-num" ,(package-with-ocaml4.07 ocaml-num))
("ocaml-piqilib" ,ocaml4.07-piqilib)
@@ -3974,9 +3909,7 @@ XML and Protocol Buffers formats.")
("ocaml-uri" ,ocaml4.07-uri)
("ocaml-zarith" ,(package-with-ocaml4.07 ocaml-zarith))))
(inputs
- `(("gmp" ,gmp)
- ("llvm" ,llvm-3.8)
- ("ncurses" ,ncurses)))
+ (list gmp llvm-3.8 ncurses))
(arguments
`(#:use-make? #t
#:phases
@@ -4061,10 +3994,9 @@ library is currently designed for Unicode Standard 3.2.")
"04gil5hxm2jax9paw3i24d8zyzhyl5cphzfyryvy2lcrm3c485q0"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-result" ,ocaml-result)
- ("ocaml-camomile" ,ocaml-camomile)))
+ (list ocaml-result ocaml-camomile))
(native-inputs
- `(("ocaml-ppx-expect" ,ocaml-ppx-expect)))
+ (list ocaml-ppx-expect))
(properties
`((upstream-name . "charInfo_width")))
(synopsis "Determine column width for a character")
@@ -4139,13 +4071,13 @@ capabilities, Zed provides macro recording and cursor management facilities.")
(arguments
`(#:test-target "."))
(propagated-inputs
- `(("ocaml-lwt" ,ocaml-lwt)
- ("ocaml-lwt-log" ,ocaml-lwt-log)
- ("ocaml-react" ,ocaml-react)
- ("ocaml-zed" ,ocaml-zed)
- ("ocaml-camomile" ,ocaml-camomile)
- ("ocaml-lwt-react" ,ocaml-lwt-react)
- ("ocaml-mew-vi" ,ocaml-mew-vi)))
+ (list ocaml-lwt
+ ocaml-lwt-log
+ ocaml-react
+ ocaml-zed
+ ocaml-camomile
+ ocaml-lwt-react
+ ocaml-mew-vi))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-lambda-term))))
(synopsis "Terminal manipulation library for OCaml")
(description "Lambda-Term is a cross-platform library for manipulating the
@@ -4194,13 +4126,10 @@ instead of bindings to a C library.")
(arguments
`(#:test-target "."))
(native-inputs
- `(("ocaml-cppo" ,ocaml-cppo)))
+ (list ocaml-cppo))
(propagated-inputs
- `(("ocaml-lambda-term" ,ocaml-lambda-term)
- ("ocaml-lwt" ,ocaml-lwt)
- ("ocaml-lwt-react" ,ocaml-lwt-react)
- ("ocaml-camomile" ,ocaml-camomile)
- ("ocaml-react" ,ocaml-react)))
+ (list ocaml-lambda-term ocaml-lwt ocaml-lwt-react ocaml-camomile
+ ocaml-react))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-utop))))
(home-page "https://github.com/ocaml-community/utop")
(synopsis "Improved interface to the OCaml toplevel")
@@ -4287,7 +4216,7 @@ long and size_t whose sizes depend on the host platform.")
`(("bigarray-compat" ,ocaml-bigarray-compat)
("integers" ,ocaml-integers)))
(inputs
- `(("libffi" ,libffi)))
+ (list libffi))
(synopsis "Library for binding to C libraries using pure OCaml")
(description "Ctypes is a library for binding to C libraries using pure
OCaml. The primary aim is to make writing C extensions as straightforward as
@@ -4359,10 +4288,7 @@ OCaml projects that contain C stubs.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("ocaml-astring" ,ocaml-astring)
- ("opam" ,opam)
- ("pkg-config" ,pkg-config)))
+ (list ocamlbuild ocaml-astring opam pkg-config))
(inputs
`(("topkg" ,ocaml-topkg)
("sdl2" ,sdl2)
@@ -4391,7 +4317,7 @@ cross-platform SDL C library.")
(inputs
`(("menhir" ,ocaml-menhir)))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)))
+ (list ocamlbuild))
(build-system ocaml-build-system)
(arguments
`(#:phases
@@ -4438,7 +4364,7 @@ developed in other systems. In particular, it enjoys a minimalistic syntax.")
"1842wikq24c8rg0ac84vb1qby9ng1nssxswyyni4kq85lng5lcrp"))
(file-name (git-file-name name version))))
(inputs
- `(("dedukti" ,dedukti)))
+ (list dedukti))
(build-system emacs-build-system)
(arguments
'(#:phases
@@ -4495,10 +4421,7 @@ syntax checking on dedukti files.")
(build-system dune-build-system)
(arguments '(#:tests? #f)) ; no tests
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-ppx-assert" ,ocaml-ppx-assert)
- ("ocaml-stdio" ,ocaml-stdio)
- ("dune-configurator" ,dune-configurator)))
+ (list ocaml-base ocaml-ppx-assert ocaml-stdio dune-configurator))
(home-page "https://github.com/janestreet/jst-config")
(synopsis "Compile-time configuration for Jane Street libraries")
(description "Defines compile-time constants used in Jane Street libraries
@@ -4535,11 +4458,8 @@ packages.")
(build-system dune-build-system)
(arguments '(#:tests? #f)) ; no tests
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-jane-street-headers" ,ocaml-jane-street-headers)
- ("ocaml-jst-config" ,ocaml-jst-config)
- ("ocaml-ppx-base" ,ocaml-ppx-base)
- ("ocaml-ppx-optcomp" ,ocaml-ppx-optcomp)))
+ (list ocaml-base ocaml-jane-street-headers ocaml-jst-config
+ ocaml-ppx-base ocaml-ppx-optcomp))
(properties `((upstream-name . "time_now")))
(home-page
"https://github.com/janestreet/time_now")
@@ -4568,13 +4488,13 @@ since the start of the Unix epoch.")
(arguments
`(#:tests? #f)) ;see home page README for further information
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-compiler-libs" ,ocaml-compiler-libs)
- ("ocaml-sexplib0" ,ocaml-sexplib0)
- ("ocaml-stdio" ,ocaml-stdio)
- ("ocaml-ppxlib" ,ocaml-ppxlib)
- ("ocaml-time-now" ,ocaml-time-now)))
+ (list ocaml-base
+ ocaml-migrate-parsetree
+ ocaml-compiler-libs
+ ocaml-sexplib0
+ ocaml-stdio
+ ocaml-ppxlib
+ ocaml-time-now))
(properties `((upstream-name . "ppx_inline_test")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-inline-test))))
(synopsis "Syntax extension for writing in-line tests in ocaml code")
@@ -4637,8 +4557,7 @@ collection.")
(lambda _
(invoke "make" "install"))))))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("ocaml-findlib" ,ocaml-findlib)))
+ (list ocamlbuild ocaml-findlib))
(home-page "https://rlepigre.github.io/ocaml-bindlib/")
(synopsis "OCaml Bindlib library for bound variables")
(description "Bindlib is a library allowing the manipulation of data
@@ -4666,7 +4585,7 @@ or quantified formulas.")
(arguments
`(#:test-target "."))
(propagated-inputs
- `(("ocaml-stdlib-shims" ,ocaml-stdlib-shims)))
+ (list ocaml-stdlib-shims))
(synopsis "Parsing library based on Earley Algorithm")
(description "Earley is a parser combinator library base on Earley's
algorithm. It is intended to be used in conjunction with an OCaml syntax
@@ -4737,9 +4656,9 @@ than the first one.")
(add-before 'build 'make-writable
(lambda _ (for-each make-file-writable (find-files "." ".")))))))
(inputs
- `(("ocaml-easy-format" ,ocaml-easy-format)))
+ (list ocaml-easy-format))
(native-inputs
- `(("which" ,which)))
+ (list which))
(synopsis "Data format designed for speed, safety, ease of use and backward
compatibility")
(description "Biniou (pronounced \"be new\" is a binary data format
@@ -4768,11 +4687,9 @@ than yojson), with 25-35% space savings.")
(arguments
`(#:test-target "."))
(propagated-inputs
- `(("ocaml-biniou" ,ocaml-biniou)
- ("ocaml-easy-format" ,ocaml-easy-format)))
+ (list ocaml-biniou ocaml-easy-format))
(native-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)
- ("ocaml-cppo" ,ocaml-cppo)))
+ (list ocaml-alcotest ocaml-cppo))
(synopsis "Low-level JSON library for OCaml")
(description "Yojson is an optimized parsing and printing library for the
JSON format. It addresses a few shortcomings of json-wheel including 2x
@@ -4806,10 +4723,7 @@ serializers and deserializers from type definitions.")
(invoke "dune" "upgrade")
#t)))))
(inputs
- `(("ocaml-fmt" ,ocaml-fmt)
- ("ocaml-astring" ,ocaml-astring)
- ("ocaml-logs" ,ocaml-logs)
- ("ocaml-cmdliner" ,ocaml-cmdliner)))
+ (list ocaml-fmt ocaml-astring ocaml-logs ocaml-cmdliner))
(synopsis
"CRAM-testing framework for testing command line applications")
(description "CRAM is a is functional testing framework for command line
@@ -4836,9 +4750,7 @@ format}. @code{craml} is released as a single binary (called @code{craml}).")
(arguments '(#:package "dot-merlin-reader"
#:tests? #f)) ; no tests
(inputs
- `(("ocaml-yojson" ,ocaml-yojson)
- ("ocaml-csexp" ,ocaml-csexp)
- ("ocaml-result" ,ocaml-result)))
+ (list ocaml-yojson ocaml-csexp ocaml-result))
(home-page "https://ocaml.github.io/merlin/")
(synopsis "Reads config files for @code{ocaml-merlin}")
(description "@code{ocaml-dot-merlin-reader} is an external reader for
@@ -4858,13 +4770,10 @@ format}. @code{craml} is released as a single binary (called @code{craml}).")
(when tests?
(invoke "dune" "runtest" "-p" "merlin,dot-merlin-reader")))))))
(inputs
- `(("ocaml-yojson" ,ocaml-yojson)
- ("ocaml-csexp" ,ocaml-csexp)
- ("ocaml-result" ,ocaml-result)))
+ (list ocaml-yojson ocaml-csexp ocaml-result))
(native-inputs
- `(("ocaml-dot-merlin-reader" ,ocaml-dot-merlin-reader) ; required for tests
- ("ocaml-mdx" ,ocaml-mdx)
- ("jq" ,jq)))
+ (list ocaml-dot-merlin-reader ; required for tests
+ ocaml-mdx jq))
(synopsis "Context sensitive completion for OCaml in Vim and Emacs")
(description "Merlin is an editor service that provides modern IDE
features for OCaml. Emacs and Vim support is provided out-of-the-box.
@@ -4896,10 +4805,9 @@ Atom.")
(substitute* "src/config/discover.ml"
(("/usr") (assoc-ref inputs "gsl"))))))))
(inputs
- `(("gsl" ,gsl)))
+ (list gsl))
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-stdio" ,ocaml-stdio)))
+ (list ocaml-base ocaml-stdio))
(home-page "https://mmottl.github.io/gsl-ocaml")
(synopsis "Bindings to the GNU Scientific Library")
(description
@@ -4941,12 +4849,10 @@ the OCaml language.")
"10kk80jdmpdvql88sdjsh7vqzlpaphd8vip2lp47aarxjkwjlz1q"))))
(build-system gnu-build-system)
(native-inputs
- `(("automake" ,automake)
- ("ocaml" ,ocaml)
- ("which" ,(@@ (gnu packages base) which))))
+ (list automake ocaml
+ (@@ (gnu packages base) which)))
(propagated-inputs
- `(("ocaml-num" ,ocaml-num)
- ("z3" ,z3)))
+ (list ocaml-num z3))
(arguments
`(#:configure-flags (list "--with-z3")
#:make-flags (list "QUIET=")
@@ -5039,8 +4945,7 @@ that was developed by Jane Street, the largest industrial user of OCaml.")
"1nr0ncb8l2mkk8pqzknr7fsqw5kpz8y102kyv5bc0x7c36v0d4zy"))))
(build-system dune-build-system)
(inputs
- `(("ocaml-sexplib0" ,ocaml-sexplib0)
- ("ocaml-base" ,ocaml-base)))
+ (list ocaml-sexplib0 ocaml-base))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-parsexp))))
(synopsis "S-expression parsing library")
(description
@@ -5091,10 +4996,7 @@ parsexp_io.")
"12rlnc6fcrjfdn3gs2agi418sj54ighhs6dfll37zcv7mgywblm2"))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-num" ,ocaml-num)
- ("ocaml-parsexp" ,ocaml-parsexp)
- ("ocaml-sexplib0" ,ocaml-sexplib0)))
+ (list ocaml-base ocaml-num ocaml-parsexp ocaml-sexplib0))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-sexplib))))
(synopsis
"Library for serializing OCaml values to and from S-expressions")
@@ -5130,7 +5032,7 @@ functionality for parsing and pretty-printing s-expressions.")
"1hizjxmiqlj2zzkwplzjamw9rbnl0kh44sxgjpzdij99qnfkzylf"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-sexplib0" ,ocaml-sexplib0)))
+ (list ocaml-sexplib0))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-base))))
(synopsis
"Full standard library replacement for OCaml")
@@ -5219,8 +5121,7 @@ is now @code{Ocaml_common.Ast_helper}.")
"1hj5hraprqy2i90a690l11yjszvb99j818q3d684ryx6p2lddk0l"))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-sexplib0" ,ocaml-sexplib0)))
+ (list ocaml-base ocaml-sexplib0))
(arguments `(#:tests? #f)) ;no tests
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-stdio))))
(synopsis "Standard IO library for OCaml")
@@ -5258,12 +5159,9 @@ a more consistent API.")
(arguments
`(#:test-target "."))
(propagated-inputs
- `(("ocaml-ppx-derivers" ,ocaml-ppx-derivers)
- ("ocaml-ppxlib" ,ocaml-ppxlib)
- ("ocaml-result" ,ocaml-result)))
+ (list ocaml-ppx-derivers ocaml-ppxlib ocaml-result))
(native-inputs
- `(("ocaml-cppo" ,ocaml-cppo)
- ("ocaml-ounit2" ,ocaml-ounit2)))
+ (list ocaml-cppo ocaml-ounit2))
(properties `((upstream-name . "ppx_deriving")))
(home-page "https://github.com/ocaml-ppx/ppx_deriving")
(synopsis "Type-driven code generation for OCaml")
@@ -5316,14 +5214,14 @@ as part of the same ocaml-migrate-parsetree driver.")
"0jg5v4pssbl66hn5davpin1i57a0r3r54l96vpz5y99xk5w70xi1"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-compiler-libs" ,ocaml-compiler-libs)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-stdlib-shims" ,ocaml-stdlib-shims)
- ("ocaml-ppx-derivers" ,ocaml-ppx-derivers)
- ("ocaml-stdio" ,ocaml-stdio)
- ("ocaml-result" ,ocaml-result)
- ("ocaml-sexplib0" ,ocaml-sexplib0)))
+ (list ocaml-base
+ ocaml-compiler-libs
+ ocaml-migrate-parsetree
+ ocaml-stdlib-shims
+ ocaml-ppx-derivers
+ ocaml-stdio
+ ocaml-result
+ ocaml-sexplib0))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-ppxlib))))
(synopsis
"Base library and tools for ppx rewriters")
@@ -5395,9 +5293,7 @@ OCaml AST in the OCaml syntax;
;; (see https://github.com/janestreet/ppx_compare/issues/10)
'(#:tests? #f))
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "ppx_compare")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-compare))))
(home-page "https://github.com/janestreet/ppx_compare")
@@ -5438,9 +5334,7 @@ by making sure that you only compare comparable values.")
(build-system dune-build-system)
(arguments `(#:tests? #f)) ; No tests
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "fieldslib")
(ocaml4.07-variant . ,(delay ocaml4.07-fieldslib))))
(home-page "https://github.com/janestreet/fieldslib")
@@ -5472,9 +5366,7 @@ of a record and create new record values.")
;; No tests
`(#:tests? #f))
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "variantslib")
(ocaml4.07-variant . ,(delay ocaml4.07-variantslib))))
(home-page "https://github.com/janestreet/variantslib")
@@ -5516,10 +5408,8 @@ standard library.")
"1zwirwqry24b48bg7d4yc845hvcirxyymzbw95aaxdcck84d30n8"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-fieldslib" ,ocaml-fieldslib)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-fieldslib ocaml-migrate-parsetree
+ ocaml-ppxlib))
(properties `((upstream-name . "ppx_fields_conv")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-fields-conv))))
(synopsis "Generation of accessor and iteration functions for ocaml records")
@@ -5556,9 +5446,7 @@ new record values.")
"0dbri9d00ydi0dw1cavswnqdmhjaaz80vap29ns2lr6mhhlvyjmj"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "ppx_sexp_conv")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-sexp-conv))))
(synopsis "Generation of S-expression conversion functions from type definitions")
@@ -5599,10 +5487,8 @@ definitions.")
"1p11fiz4m160hs0xzg4g9rxchp053sz3s3d1lyciqixad1xi47a4"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-variantslib" ,ocaml-variantslib)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-variantslib ocaml-migrate-parsetree
+ ocaml-ppxlib))
(properties
`((upstream-name . "ppx_variants_conv")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-variants-conv))))
@@ -5649,10 +5535,8 @@ variant types.")
"0c1m65kn27zvwmfwy7kk46ga76yw2a3ik9jygpy1b6nn6pi026w9"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-ppx-sexp-conv ocaml-migrate-parsetree
+ ocaml-ppxlib))
(properties `((upstream-name . "ppx_custom_printf")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-custom-printf))))
(synopsis "Printf-style format-strings for user-defined string conversion")
@@ -5748,11 +5632,8 @@ storage of large amounts of data.")
"0x4wgdvhgd8a49bzari52jpkykxpv6ncgp5ncda3xgg0a9r49s8n"))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-ppx-compare" ,ocaml-ppx-compare)
- ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-ppx-compare ocaml-ppx-sexp-conv
+ ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "ppx_hash")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-hash))))
(home-page "https://github.com/janestreet/ppx_hash")
@@ -5791,9 +5672,7 @@ hash functions from type exrpessions and definitions.")
(arguments
`(#:tests? #f)) ; no test suite
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "ppx_enumerate")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-enumerate))))
(home-page "https://github.com/janestreet/ppx_enumerate")
@@ -5863,9 +5742,7 @@ many values).")
;; broken tests
`(#:tests? #f))
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "ppx_here")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-here))))
(home-page "https://github.com/janestreet/ppx_here")
@@ -6013,9 +5890,7 @@ context such as function arguments.")
(build-system dune-build-system)
(arguments `(#:tests? #f)) ; No tests
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "ppx_optional")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-optional))))
(home-page "https://github.com/janestreet/ppx_optional")
@@ -6053,9 +5928,7 @@ else expression.")
"1iflgfzs23asw3k6098v84al5zqx59rx2qjw0mhvk56avlx71pkw"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-stdio" ,ocaml-stdio)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-stdio ocaml-ppxlib))
(properties `((upstream-name . "ppx_optcomp")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-optcomp))))
(synopsis "Optional compilation for OCaml")
@@ -6084,9 +5957,7 @@ size, the version of the compiler, ...")
"1qcrnd86pbr1di5m6z4ps4p15qawwa02jxwz3xfd82hdbjmdwf1s"))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
(properties `((upstream-name . "ppx_let")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-let))))
(home-page "https://github.com/janestreet/ppx_let")
@@ -6147,8 +6018,7 @@ position.")
(build-system dune-build-system)
(arguments `(#:test-target "tests"))
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-ppxlib))
(properties `((upstream-name . "ppx_cold")))
(synopsis "Syntax extension for indicating cold path")
(description
@@ -6167,13 +6037,13 @@ https://github.com/ocaml/ocaml/issues/8563.")
"1l2rr4jz2q5b35ryn2z146z7m9v6k8krp5gpn8ilib66mnz5zx15"))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-ppx-cold" ,ocaml-ppx-cold)
- ("ocaml-ppx-compare" ,ocaml-ppx-compare)
- ("ocaml-ppx-here" ,ocaml-ppx-here)
- ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base
+ ocaml-ppx-cold
+ ocaml-ppx-compare
+ ocaml-ppx-here
+ ocaml-ppx-sexp-conv
+ ocaml-migrate-parsetree
+ ocaml-ppxlib))
(properties `((upstream-name . "ppx_assert")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-assert))))
(home-page "https://github.com/janestreet/ppx_assert")
@@ -6215,13 +6085,13 @@ useful errors on failure.")
"1v886rsl93wdmaw61z10q8nqshf8hvlznj9gym2ljrjz4cqyjsa4"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-ppx-here" ,ocaml-ppx-here)
- ("ocaml-ppx-inline-test" ,ocaml-ppx-inline-test)
- ("ocaml-stdio" ,ocaml-stdio)
- ("ocaml-ppxlib" ,ocaml-ppxlib)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-re" ,ocaml-re)))
+ (list ocaml-base
+ ocaml-ppx-here
+ ocaml-ppx-inline-test
+ ocaml-stdio
+ ocaml-ppxlib
+ ocaml-migrate-parsetree
+ ocaml-re))
(properties `((upstream-name . "ppx_expect")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-expect))))
(home-page "https://github.com/janestreet/ppx_expect")
@@ -6274,10 +6144,7 @@ to denote the expected output.")
(build-system dune-build-system)
(arguments `(#:tests? #f)) ; No tests
(propagated-inputs
- `(("ocaml-base" ,ocaml-base)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-octavius" ,ocaml-octavius)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-base ocaml-migrate-parsetree ocaml-octavius ocaml-ppxlib))
(properties `((upstream-name . "ppx_js_style")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-js-style))))
(home-page "https://github.com/janestreet/ppx_js_style")
@@ -6341,14 +6208,14 @@ from type definitions.")
(arguments
`(#:test-target "."))
(propagated-inputs
- `(("ocaml-ppx-compare" ,ocaml-ppx-compare)
- ("ocaml-ppx-cold" ,ocaml-ppx-cold)
- ("ocaml-ppx-enumerate" ,ocaml-ppx-enumerate)
- ("ocaml-ppx-hash" ,ocaml-ppx-hash)
- ("ocaml-ppx-js-style" ,ocaml-ppx-js-style)
- ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-ppxlib" ,ocaml-ppxlib)))
+ (list ocaml-ppx-compare
+ ocaml-ppx-cold
+ ocaml-ppx-enumerate
+ ocaml-ppx-hash
+ ocaml-ppx-js-style
+ ocaml-ppx-sexp-conv
+ ocaml-migrate-parsetree
+ ocaml-ppxlib))
(properties `((upstream-name . "ppx_base")
(ocaml4.07-variant . ,(delay ocaml4.07-ppx-base))))
(home-page "https://github.com/janestreet/ppx_base")
@@ -6715,13 +6582,9 @@ the full Core is not available, such as in Javascript.")
(arguments
`(#:package "markup"))
(propagated-inputs
- `(("ocaml-bisect-ppx" ,ocaml-bisect-ppx)
- ("ocaml-uchar" ,ocaml-uchar)
- ("ocaml-uutf" ,ocaml-uutf)
- ("ocaml-lwt" ,ocaml-lwt)))
+ (list ocaml-bisect-ppx ocaml-uchar ocaml-uutf ocaml-lwt))
(native-inputs
- `(("ocaml-ounit2" ,ocaml-ounit2)
- ("pkg-config" ,pkg-config)))
+ (list ocaml-ounit2 pkg-config))
(properties
`((ocaml4.07-variant . ,(delay (package-with-ocaml4.07 ocaml-markup0.8.0)))))
(synopsis "Error-recovering functional HTML5 and XML parsers and writers")
@@ -6764,8 +6627,7 @@ stream, and convert everything to UTF-8.")
(base32
"0aif4abvfmi9xc1pvw5n5rbm6rzkkpsxyvdn0lanr33rjpvkwdlm"))))
(native-inputs
- `(("ocaml-ounit" ,ocaml-ounit)
- ("pkg-config" ,pkg-config)))
+ (list ocaml-ounit pkg-config))
(properties '())))
(define-public ocaml-tyxml
@@ -6784,11 +6646,9 @@ stream, and convert everything to UTF-8.")
"0bh66wknc7sx2r63kscp0hg6h73dkv6qpkx0cdz2qp7p28pg2ixz"))))
(build-system dune-build-system)
(inputs
- `(("ocaml-re" ,ocaml-re)
- ("ocaml-seq" ,ocaml-seq)
- ("ocaml-uutf" ,ocaml-uutf)))
+ (list ocaml-re ocaml-seq ocaml-uutf))
(native-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)))
+ (list ocaml-alcotest))
(arguments `(#:package "tyxml"))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-tyxml))))
(home-page "https://github.com/ocsigen/tyxml/")
@@ -6834,8 +6694,7 @@ combinators.")
"1knglw1b2kjr9jnd8cpfzmm581abxxdcx9l3cd2balg6gnac7qk1"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-ppxlib" ,ocaml-ppxlib)
- ("ocaml-cmdliner" ,ocaml-cmdliner)))
+ (list ocaml-ppxlib ocaml-cmdliner))
(arguments
;; Tests require ocamlformat which would lead to circular dependencies
'(#:tests? #f))
@@ -6902,28 +6761,28 @@ then run the Bisect_ppx report tool on the generated visitation files.")
(substitute* "test/xref2/with.t/run.t"
(("#!/bin/sh") (string-append "#!" (which "sh")))))))))
(inputs
- `(("ocaml-astring" ,ocaml-astring)
- ("ocaml-bisect-ppx" ,ocaml-bisect-ppx)
- ("ocaml-cmdliner" ,ocaml-cmdliner)
- ("ocaml-fmt" ,ocaml-fmt)
- ("ocaml-fpath" ,ocaml-fpath)
- ("ocaml-logs" ,ocaml-logs)
- ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
- ("ocaml-odoc-parser" ,ocaml-odoc-parser)
- ("ocaml-re" ,ocaml-re)
- ("ocaml-result" ,ocaml-result)
- ("ocaml-tyxml" ,ocaml-tyxml)))
+ (list ocaml-astring
+ ocaml-bisect-ppx
+ ocaml-cmdliner
+ ocaml-fmt
+ ocaml-fpath
+ ocaml-logs
+ ocaml-migrate-parsetree
+ ocaml-odoc-parser
+ ocaml-re
+ ocaml-result
+ ocaml-tyxml))
(native-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)
- ("ocaml-bos" ,ocaml-bos)
- ("ocaml-cppo" ,ocaml-cppo)
- ("ocaml-findlib" ,ocaml-findlib)
- ("ocaml-lwt" ,ocaml-lwt)
- ("ocaml-markup" ,ocaml-markup)
- ("ocaml-ppx-expect" ,ocaml-ppx-expect)
- ("ocaml-version" ,ocaml-version)
- ("ocaml-yojson" ,ocaml-yojson)
- ("jq" ,jq)))
+ (list ocaml-alcotest
+ ocaml-bos
+ ocaml-cppo
+ ocaml-findlib
+ ocaml-lwt
+ ocaml-markup
+ ocaml-ppx-expect
+ ocaml-version
+ ocaml-yojson
+ jq))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-odoc))))
(home-page "https://github.com/ocaml/odoc")
(synopsis "OCaml documentation generator")
@@ -6952,10 +6811,9 @@ complexity of the OCaml module system.")
"1jlc6dp3v90r1ra7r0jfw0xs8rylwdz9gymw4rd53h0p17cw1wnj"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-astring" ,ocaml-astring)
- ("ocaml-result" ,ocaml-result)))
+ (list ocaml-astring ocaml-result))
(native-inputs
- `(("ocaml-ppx-expect" ,ocaml-ppx-expect)))
+ (list ocaml-ppx-expect))
(home-page "https://github.com/ocaml-doc/odoc-parser")
(synopsis "Parser for ocaml documentation comments")
(description
@@ -7017,11 +6875,9 @@ language understood by ocamldoc.")
(arguments
`(#:test-target "tests"))
(propagated-inputs
- `(("fftw" ,fftw)
- ("fftwf" ,fftwf)))
+ (list fftw fftwf))
(native-inputs
- `(("ocaml-cppo" ,ocaml-cppo)
- ("ocaml-lacaml" ,ocaml-lacaml)))
+ (list ocaml-cppo ocaml-lacaml))
(home-page
"https://github.com/Chris00/fftw-ocaml")
(synopsis
@@ -7049,10 +6905,7 @@ library FFTW.")
(arguments
`(#:tests? #f)) ; No test target.
(native-inputs
- `(("openblas" ,openblas)
- ("lapack" ,lapack)
- ("ocaml-base" ,ocaml-base)
- ("ocaml-stdio" ,ocaml-stdio)))
+ (list openblas lapack ocaml-base ocaml-stdio))
(home-page "https://mmottl.github.io/lacaml/")
(synopsis
"OCaml-bindings to BLAS and LAPACK")
@@ -7083,7 +6936,7 @@ convenience functions for vectors and matrices.")
("gtk+-2" ,gtk+-2)
("lablgtk" ,lablgtk)))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ (list pkg-config))
(home-page "https://github.com/Chris00/ocaml-cairo")
(synopsis "Binding to Cairo, a 2D Vector Graphics Library")
(description "Ocaml-cairo2 is a binding to Cairo, a 2D graphics library
@@ -7134,19 +6987,17 @@ variants.")
"1w2vx4my9z6n57vjvsa3b9vwkbdzs1kq0cc58rf088qrh2lrx2ba"))))
(build-system dune-build-system)
(inputs
- `(("ocaml-fmt" ,ocaml-fmt)
- ("ocaml-astring" ,ocaml-astring)
- ("ocaml-logs" ,ocaml-logs)
- ("ocaml-cmdliner" ,ocaml-cmdliner)
- ("ocaml-re" ,ocaml-re)
- ("ocaml-result" ,ocaml-result)
- ("ocaml-odoc" ,ocaml-odoc)
- ("ocaml-odoc-parser" ,ocaml-odoc-parser)
- ("ocaml-version" ,ocaml-version)))
+ (list ocaml-fmt
+ ocaml-astring
+ ocaml-logs
+ ocaml-cmdliner
+ ocaml-re
+ ocaml-result
+ ocaml-odoc
+ ocaml-odoc-parser
+ ocaml-version))
(native-inputs
- `(("ocaml-cppo" ,ocaml-cppo)
- ("ocaml-lwt" ,ocaml-lwt)
- ("ocaml-alcotest" ,ocaml-alcotest)))
+ (list ocaml-cppo ocaml-lwt ocaml-alcotest))
(home-page
"https://github.com/realworldocaml/mdx")
(synopsis
@@ -7205,8 +7056,7 @@ the FParsec library for FSharp by Stephan Tolksdorf.")
'(#:package "mparser-re"
#:tests? #f))
(propagated-inputs
- `(("ocaml-mparser" ,ocaml-mparser)
- ("ocaml-re" ,ocaml-re)))
+ (list ocaml-mparser ocaml-re))
(synopsis "MParser plugin for RE-based regular expressions")
(description "This package provides RE-based regular expressions
support for Mparser.")))
@@ -7220,8 +7070,7 @@ support for Mparser.")))
'(#:package "mparser-pcre"
#:tests? #f))
(propagated-inputs
- `(("ocaml-mparser" ,ocaml-mparser)
- ("ocaml-pcre" ,ocaml-pcre)))
+ (list ocaml-mparser ocaml-pcre))
(synopsis "MParser plugin for PCRE-based regular expressions")
(description "This package provides PCRE-based regular expressions
support for Mparser.")))
@@ -7256,14 +7105,14 @@ support for Mparser.")))
(("\\(name lablgtk3\\)")
(string-append "(name lablgtk3)\n(version " ,version ")"))))))))
(propagated-inputs
- `(("ocaml-cairo2" ,ocaml-cairo2)))
+ (list ocaml-cairo2))
(inputs
`(("camlp5" ,camlp5)
("gtk+" ,gtk+)
("gtksourceview-3" ,gtksourceview-3)
("gtkspell3" ,gtkspell3)))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ (list pkg-config))
(home-page "https://github.com/garrigue/lablgtk")
(synopsis "OCaml interface to GTK+3")
(description "LablGtk is an OCaml interface to GTK+ 1.2, 2.x and 3.x. It
@@ -7307,10 +7156,9 @@ generate OCaml code from .glade files), libpanel, librsvg and quartz.")
(build-system ocaml-build-system)
(properties `((upstream-name . "reactiveData")))
(native-inputs
- `(("ocamlbuild" ,ocamlbuild)
- ("opam" ,opam)))
+ (list ocamlbuild opam))
(propagated-inputs
- `(("ocaml-react" ,ocaml-react)))
+ (list ocaml-react))
(home-page "https://github.com/ocsigen/reactiveData")
(synopsis "Declarative events and signals for OCaml")
(description
@@ -7339,12 +7187,9 @@ client chooses the concrete timeline.")
(modify-phases %standard-phases
(delete 'configure))))
(propagated-inputs
- `(("ocaml-xmlm" ,ocaml-xmlm)))
+ (list ocaml-xmlm))
(native-inputs
- `(("opam" ,opam)
- ("ocaml-findlib" ,ocaml-findlib)
- ("ocamlbuild" ,ocamlbuild)
- ("ocaml-topkg" ,ocaml-topkg)))
+ (list opam ocaml-findlib ocamlbuild ocaml-topkg))
(home-page "https://erratique.ch/software/uucd")
(synopsis "Unicode character database decoder for OCaml")
(description "Uucd is an OCaml module to decode the data of the Unicode
@@ -7372,13 +7217,13 @@ representations can be extracted.")
(modify-phases %standard-phases
(delete 'configure))))
(native-inputs
- `(("opam" ,opam)
- ("ocaml-findlib" ,ocaml-findlib)
- ("ocamlbuild" ,ocamlbuild)
- ("ocaml-topkg" ,ocaml-topkg)
- ("ocaml-uucd" ,ocaml-uucd)
- ("ocaml-uunf" ,ocaml-uunf)
- ("ocaml-uutf" ,ocaml-uutf)))
+ (list opam
+ ocaml-findlib
+ ocamlbuild
+ ocaml-topkg
+ ocaml-uucd
+ ocaml-uunf
+ ocaml-uutf))
(home-page "https://erratique.ch/software/uucp")
(synopsis "Unicode character properties for OCaml")
(description "Uucp is an OCaml library providing efficient access to a
@@ -7404,14 +7249,9 @@ selection of character properties of the Unicode character database.")
(modify-phases %standard-phases
(delete 'configure))))
(propagated-inputs
- `(("ocaml-uucp" ,ocaml-uucp)
- ("ocaml-uutf" ,ocaml-uutf)
- ("ocaml-cmdliner" ,ocaml-cmdliner)))
+ (list ocaml-uucp ocaml-uutf ocaml-cmdliner))
(native-inputs
- `(("opam" ,opam)
- ("ocaml-findlib" ,ocaml-findlib)
- ("ocamlbuild" ,ocamlbuild)
- ("ocaml-topkg" ,ocaml-topkg)))
+ (list opam ocaml-findlib ocamlbuild ocaml-topkg))
(home-page "https://erratique.ch/software/uuseg")
(synopsis "Unicode text segmentation for OCaml")
(description "Uuseg is an OCaml library for segmenting Unicode text. It
@@ -7458,7 +7298,7 @@ that involve memoization and recursion.")
;; No separate test suite from dune.
#:tests? #f))
(propagated-inputs
- `(("ocaml-odoc" ,ocaml-odoc)))
+ (list ocaml-odoc))
(synopsis "Embed build information inside an executable")
(description "This package allows one to access information about how the
executable was built, such as the version of the project at which it was built
@@ -7510,25 +7350,23 @@ defined in OCaml 4.12.0.")
;; produced format is for test/cli/stdin.t
#:tests? #f))
(propagated-inputs
- `(("ocaml-version" ,ocaml-version)
- ("ocaml-base" ,ocaml-base)
- ("ocaml-cmdliner" ,ocaml-cmdliner)
- ("ocaml-dune-build-info" ,ocaml-dune-build-info)
- ("ocaml-either" ,ocaml-either)
- ("ocaml-fix" ,ocaml-fix)
- ("ocaml-fpath" ,ocaml-fpath)
- ("ocaml-menhir" ,ocaml-menhir)
- ("ocaml-odoc" ,ocaml-odoc)
- ("ocaml-ppxlib" ,ocaml-ppxlib)
- ("ocaml-re" ,ocaml-re)
- ("ocaml-odoc-parser" ,ocaml-odoc-parser)
- ("ocaml-stdio" ,ocaml-stdio)
- ("ocaml-uuseg" ,ocaml-uuseg)
- ("ocaml-uutf" ,ocaml-uutf)))
+ (list ocaml-version
+ ocaml-base
+ ocaml-cmdliner
+ ocaml-dune-build-info
+ ocaml-either
+ ocaml-fix
+ ocaml-fpath
+ ocaml-menhir
+ ocaml-odoc
+ ocaml-ppxlib
+ ocaml-re
+ ocaml-odoc-parser
+ ocaml-stdio
+ ocaml-uuseg
+ ocaml-uutf))
(native-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)
- ("ocaml-ocp-indent" ,ocaml-ocp-indent)
- ("ocaml-bisect-ppx" ,ocaml-bisect-ppx)))
+ (list ocaml-alcotest ocaml-ocp-indent ocaml-bisect-ppx))
(home-page "https://github.com/ocaml-ppx/ocamlformat")
(synopsis "Auto-formatter for OCaml code")
(description "OCamlFormat is a tool to automatically format OCaml code in
@@ -7554,10 +7392,9 @@ a uniform style.")
(arguments
'(#:test-target "."))
(propagated-inputs
- `(("ocaml-bigarray-compat" ,ocaml-bigarray-compat)))
+ (list ocaml-bigarray-compat))
(native-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)
- ("pkg-config" ,pkg-config)))
+ (list ocaml-alcotest pkg-config))
(synopsis
"Bigstring intrinsics and fast blits based on memcpy/memmove")
(description
@@ -7608,10 +7445,9 @@ OCaml.")
(base32 "0417xsghj92v3xa5q4dk4nzf2r4mylrx2fd18i7cg3nzja65nia2"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-result" ,ocaml-result)
- ("ocaml-trie" ,ocaml-trie)))
+ (list ocaml-result ocaml-trie))
(native-inputs
- `(("ocaml-ppx-expect" ,ocaml-ppx-expect)))
+ (list ocaml-ppx-expect))
(synopsis "General modal editing engine generator")
(description
"This package provides the core modules of Modal Editing Witch, a general
@@ -7634,10 +7470,9 @@ modal editing engine generator.")
(base32 "0lihbf822k5zasl60w5mhwmdkljlq49c9saayrws7g4qc1j353r8"))))
(build-system dune-build-system)
(propagated-inputs
- `(("ocaml-mew" ,ocaml-mew)
- ("ocaml-react" ,ocaml-react)))
+ (list ocaml-mew ocaml-react))
(native-inputs
- `(("ocaml-ppx-expect" ,ocaml-ppx-expect)))
+ (list ocaml-ppx-expect))
(properties `((upstream-name . "mew_vi")))
(synopsis "Modal editing VI-like editing engine generator")
(description "This module provides a vi-like modal editing engine
@@ -7690,11 +7525,9 @@ OCaml compilers.")
'(#:package "angstrom"
#:test-target "."))
(propagated-inputs
- `(("ocaml-bigstringaf" ,ocaml-bigstringaf)))
+ (list ocaml-bigstringaf))
(native-inputs
- `(("ocaml-alcotest" ,ocaml-alcotest)
- ("ocaml-ppx-let" ,ocaml-ppx-let)
- ("ocaml-syntax-shims" ,ocaml-syntax-shims)))
+ (list ocaml-alcotest ocaml-ppx-let ocaml-syntax-shims))
(synopsis "Parser combinators built for speed and memory-efficiency")
(description
"Angstrom is a parser-combinator library that makes it easy to write
@@ -7723,7 +7556,7 @@ Parsers are backtracking by default and support unbounded lookahead.")
"1q20f8y6ijxbvzik2ns4yl3w54q5z8kd0pby8i8c64a04hvly08m"))))
(build-system dune-build-system)
(propagated-inputs
- `(("libx11" ,libx11)))
+ (list libx11))
(synopsis "The OCaml graphics library")
(description
"The graphics library provides a set of portable drawing primitives.
@@ -7740,10 +7573,8 @@ up to OCaml 4.08.")
'(#:package "uri-sexp"
#:test-target "."))
(propagated-inputs
- `(("ocaml-uri" ,ocaml-uri)
- ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
- ("ocaml-sexplib0" ,ocaml-sexplib0)))
- (native-inputs `(("ocaml-ounit" ,ocaml-ounit)))
+ (list ocaml-uri ocaml-ppx-sexp-conv ocaml-sexplib0))
+ (native-inputs (list ocaml-ounit))
(synopsis "RFC3986 URI/URL parsing library")
(description "This package adds S-exp support to @code{ocaml-uri}.")))
@@ -7766,17 +7597,15 @@ up to OCaml 4.08.")
'(#:package "cohttp"
#:test-target "cohttp_test/src"))
(propagated-inputs
- `(("ocaml-re" ,ocaml-re)
- ("ocaml-uri" ,ocaml-uri)
- ("ocaml-uri-sexp" ,ocaml-uri-sexp)
- ("ocaml-sexplib0" ,ocaml-sexplib0)
- ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
- ("ocaml-stringext" ,ocaml-stringext)
- ("ocaml-base64" ,ocaml-base64)))
+ (list ocaml-re
+ ocaml-uri
+ ocaml-uri-sexp
+ ocaml-sexplib0
+ ocaml-ppx-sexp-conv
+ ocaml-stringext
+ ocaml-base64))
(native-inputs
- `(("ocaml-fmt" ,ocaml-fmt)
- ("ocaml-jsonm" ,ocaml-jsonm)
- ("ocaml-alcotest" ,ocaml-alcotest)))
+ (list ocaml-fmt ocaml-jsonm ocaml-alcotest))
(home-page "https://github.com/mirage/ocaml-cohttp")
(synopsis "OCaml library for HTTP clients and servers")
(description
@@ -7801,22 +7630,20 @@ libraries.")
(build-system dune-build-system)
(arguments `(#:test-target "."))
(propagated-inputs
- `(("ocaml-ppxlib" ,ocaml-ppxlib)
- ("ocaml-uchar" ,ocaml-uchar)
- ("ocaml-menhir" ,ocaml-menhir)
- ("ocaml-reactivedata" ,ocaml-reactivedata)
- ("ocaml-cmdliner" ,ocaml-cmdliner)
- ("ocaml-lwt" ,ocaml-lwt)
- ("ocaml-tyxml" ,ocaml-tyxml)
- ("ocaml-re" ,ocaml-re)
- ("ocaml-uutf" ,ocaml-uutf)
- ("ocaml-graphics" ,ocaml-graphics)
- ("ocaml-yojson" ,ocaml-yojson)))
+ (list ocaml-ppxlib
+ ocaml-uchar
+ ocaml-menhir
+ ocaml-reactivedata
+ ocaml-cmdliner
+ ocaml-lwt
+ ocaml-tyxml
+ ocaml-re
+ ocaml-uutf
+ ocaml-graphics
+ ocaml-yojson))
(native-inputs
;; for tests
- `(("node" ,node)
- ("ocaml-ppx-expect" ,ocaml-ppx-expect)
- ("ocaml-num" ,ocaml-num)))
+ (list node ocaml-ppx-expect ocaml-num))
(properties `((upstream-name . "js_of_ocaml")))
(home-page "https://ocsigen.org/js_of_ocaml/")
(synopsis "Compiler from OCaml bytecode to Javascript")
@@ -7849,7 +7676,7 @@ browsers and Node.js.")
(list texlive-fonts-ec texlive-preprint
texlive-hyperref texlive-bibtex)))))
(propagated-inputs
- `(("hevea" ,hevea)))
+ (list hevea))
(home-page "https://www.lri.fr/~filliatr/bibtex2html/")
(synopsis "BibTeX to HTML translator")
(description "This package allows you to produce, from a set of