Merge branch 'master' into staging
[jackhill/guix/guix.git] / gnu / packages / ocaml.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
3 ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
4 ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
5 ;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
6 ;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
7 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
8 ;;; Copyright © 2016, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
9 ;;; Copyright © 2016-2022 Julien Lepiller <julien@lepiller.eu>
10 ;;; Copyright © 2017 Ben Woodcroft <donttrustben@gmail.com>
11 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
12 ;;; Copyright © 2018 Peter Kreye <kreyepr@gmail.com>
13 ;;; Copyright © 2018, 2019 Gabriel Hondet <gabrielhondet@gmail.com>
14 ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
15 ;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
16 ;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
17 ;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
18 ;;; Copyright © 2020, 2021 Simon Tournier <zimon.toutoune@gmail.com>
19 ;;; Copyright © 2020 divoplade <d@divoplade.fr>
20 ;;; Copyright © 2020, 2021, 2022 pukkamustard <pukkamustard@posteo.net>
21 ;;; Copyright © 2021 aecepoglu <aecepoglu@fastmail.fm>
22 ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
23 ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
24 ;;; Copyright © 2021 Ivan Gankevich <i.gankevich@spbu.ru>
25 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
26 ;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
27 ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
28 ;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
29 ;;;
30 ;;; This file is part of GNU Guix.
31 ;;;
32 ;;; GNU Guix is free software; you can redistribute it and/or modify it
33 ;;; under the terms of the GNU General Public License as published by
34 ;;; the Free Software Foundation; either version 3 of the License, or (at
35 ;;; your option) any later version.
36 ;;;
37 ;;; GNU Guix is distributed in the hope that it will be useful, but
38 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
39 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
40 ;;; GNU General Public License for more details.
41 ;;;
42 ;;; You should have received a copy of the GNU General Public License
43 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
44
45 (define-module (gnu packages ocaml)
46 #:use-module (gnu packages)
47 #:use-module (gnu packages algebra)
48 #:use-module (gnu packages autotools)
49 #:use-module (gnu packages base)
50 #:use-module (gnu packages bash)
51 #:use-module (gnu packages bison)
52 #:use-module (gnu packages boost)
53 #:use-module (gnu packages compression)
54 #:use-module (gnu packages curl)
55 #:use-module (gnu packages emacs)
56 #:use-module (gnu packages emacs-xyz)
57 #:use-module (gnu packages flex)
58 #:use-module (gnu packages gcc)
59 #:use-module (gnu packages ghostscript)
60 #:use-module (gnu packages glib)
61 #:use-module (gnu packages gnome)
62 #:use-module (gnu packages gtk)
63 #:use-module (gnu packages guile)
64 #:use-module (gnu packages libevent)
65 #:use-module (gnu packages libffi)
66 #:use-module (gnu packages llvm)
67 #:use-module (gnu packages m4)
68 #:use-module (gnu packages maths)
69 #:use-module (gnu packages multiprecision)
70 #:use-module (gnu packages ncurses)
71 #:use-module (gnu packages node)
72 #:use-module (gnu packages pcre)
73 #:use-module (gnu packages perl)
74 #:use-module (gnu packages pkg-config)
75 #:use-module (gnu packages protobuf)
76 #:use-module (gnu packages python)
77 #:use-module (gnu packages python-xyz)
78 #:use-module (gnu packages rsync)
79 #:use-module (gnu packages sdl)
80 #:use-module (gnu packages sqlite)
81 #:use-module (gnu packages tex)
82 #:use-module (gnu packages texinfo)
83 #:use-module (gnu packages time)
84 #:use-module (gnu packages tls)
85 #:use-module (gnu packages version-control)
86 #:use-module (gnu packages virtualization)
87 #:use-module (gnu packages web)
88 #:use-module (gnu packages web-browsers)
89 #:use-module (gnu packages xml)
90 #:use-module (gnu packages xorg)
91 #:use-module (guix build-system dune)
92 #:use-module (guix build-system emacs)
93 #:use-module (guix build-system gnu)
94 #:use-module (guix build-system ocaml)
95 #:use-module (guix download)
96 #:use-module (guix gexp)
97 #:use-module (guix git-download)
98 #:use-module ((guix licenses) #:prefix license:)
99 #:use-module (guix packages)
100 #:use-module (guix svn-download)
101 #:use-module (guix utils)
102 #:use-module ((srfi srfi-1) #:hide (zip)))
103
104 ;; A shortcut for files from ocaml forge. Downloaded files are computed from
105 ;; their number, not their name.
106 (define (ocaml-forge-uri name version file-number)
107 (string-append "https://forge.ocamlcore.org/frs/download.php/"
108 (number->string file-number) "/" name "-" version
109 ".tar.gz"))
110
111 (define (janestreet-origin name version hash)
112 (origin (method url-fetch)
113 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
114 (version-major+minor version) "/files/"
115 name "-v" (version-major+minor+point version)
116 ".tar.gz"))
117 (sha256 (base32 hash))))
118
119 (define-public camlboot
120 (let ((commit "45045d0afa82f7e9b7ea07314aab08be2d3cd64b")
121 (revision "1"))
122 (package
123 (name "camlboot")
124 (version (git-version "0.0.0" revision commit))
125 (source (origin
126 (method git-fetch)
127 (uri (git-reference
128 (url "https://github.com/Ekdohibs/camlboot")
129 (commit commit)
130 (recursive? #t)))
131 (file-name (git-file-name name version))
132 (sha256
133 (base32
134 "1f5gl3hzvixbgk0v3kmxiyn432znyy3jh5fa65cfzcaxzgfv1i1c"))
135 (modules '((guix build utils)))
136 (snippet
137 `(begin
138 ;; Remove bootstrap binaries and pre-generated source files,
139 ;; to ensure we actually bootstrap properly.
140 (for-each delete-file (find-files "ocaml-src" "^.depend$"))
141 (delete-file "ocaml-src/boot/ocamlc")
142 (delete-file "ocaml-src/boot/ocamllex")
143 ;; Ensure writable
144 (for-each
145 (lambda (file)
146 (chmod file (logior (stat:mode (stat file)) #o200)))
147 (find-files "." "."))))))
148 (build-system gnu-build-system)
149 (arguments
150 `(#:make-flags (list "_boot/ocamlc") ; build target
151 #:tests? #f ; no tests
152 #:phases
153 (modify-phases %standard-phases
154 (delete 'configure)
155 (add-before 'build 'no-autocompile
156 (lambda _
157 ;; prevent a guile warning
158 (setenv "GUILE_AUTO_COMPILE" "0")))
159 (replace 'install
160 (lambda* (#:key outputs #:allow-other-keys)
161 (let* ((out (assoc-ref outputs "out"))
162 (bin (string-append out "/bin")))
163 (mkdir-p bin)
164 (install-file "_boot/ocamlc" bin)
165 (rename-file "miniml/interp/lex.byte" "ocamllex")
166 (install-file "ocamllex" bin)))))))
167 (native-inputs
168 (list guile-3.0))
169 (properties
170 ;; 10 hours, mostly for arm, more than 1 expected even on x86_64
171 `((max-silent-time . 36000)))
172 (home-page "https://github.com/Ekdohibs/camlboot")
173 (synopsis "OCaml source bootstrap")
174 (description "OCaml is written in OCaml. Its sources contain a pre-compiled
175 bytecode version of @command{ocamlc} and @command{ocamllex} that are used to
176 build the next version of the compiler. Camlboot implements a bootstrap for
177 the OCaml compiler and provides a bootstrapped equivalent to these files.
178
179 It contains a compiler for a small subset of OCaml written in Guile Scheme,
180 an interpreter for OCaml written in that subset and a manually-written lexer
181 for OCaml. These elements eliminate the need for the binary bootstrap in
182 OCaml and can effectively bootstrap OCaml 4.07.
183
184 This package produces a native @command{ocamlc} and a bytecode @command{ocamllex}.")
185 (license license:expat))))
186
187 (define-public ocaml-4.14
188 (package
189 (name "ocaml")
190 (version "4.14.0")
191 (source (origin
192 (method url-fetch)
193 (uri (string-append
194 "http://caml.inria.fr/pub/distrib/ocaml-"
195 (version-major+minor version)
196 "/ocaml-" version ".tar.xz"))
197 (sha256
198 (base32
199 "0axcc7c23pf4qinz4vxgkba6pwziwbp9i2ydwzar7x9zlp6diarn"))))
200 (build-system gnu-build-system)
201 (native-search-paths
202 (list (search-path-specification
203 (variable "OCAMLPATH")
204 (files (list "lib/ocaml" "lib/ocaml/site-lib")))
205 (search-path-specification
206 (variable "CAML_LD_LIBRARY_PATH")
207 (files (list "lib/ocaml/site-lib/stubslibs"
208 "lib/ocaml/site-lib/stublibs")))))
209 (native-inputs
210 (list perl pkg-config))
211 (inputs
212 (list libx11 libiberty ;needed for objdump support
213 zlib)) ;also needed for objdump support
214 (arguments
215 `(#:configure-flags '("--enable-ocamltest")
216 #:test-target "tests"
217 #:make-flags '("world.opt")
218 #:phases
219 (modify-phases %standard-phases
220 (add-after 'unpack 'patch-/bin/sh-references
221 (lambda* (#:key inputs #:allow-other-keys)
222 (let* ((sh (search-input-file inputs "/bin/sh"))
223 (quoted-sh (string-append "\"" sh "\"")))
224 (with-fluids ((%default-port-encoding #f))
225 (for-each
226 (lambda (file)
227 (substitute* file
228 (("\"/bin/sh\"")
229 (begin
230 (format (current-error-port) "\
231 patch-/bin/sh-references: ~a: changing `\"/bin/sh\"' to `~a'~%"
232 file quoted-sh)
233 quoted-sh))))
234 (find-files "." "\\.ml$")))))))))
235 (home-page "https://ocaml.org/")
236 (synopsis "The OCaml programming language")
237 (description
238 "OCaml is a general purpose industrial-strength programming language with
239 an emphasis on expressiveness and safety. Developed for more than 20 years at
240 Inria it benefits from one of the most advanced type systems and supports
241 functional, imperative and object-oriented styles of programming.")
242 ;; The compiler is distributed under qpl1.0 with a change to choice of
243 ;; law: the license is governed by the laws of France. The library is
244 ;; distributed under lgpl2.0.
245 (license (list license:qpl license:lgpl2.0))))
246
247 (define-public ocaml-4.09
248 (package
249 (inherit ocaml-4.14)
250 (version "4.09.0")
251 (source (origin
252 (method url-fetch)
253 (uri (string-append
254 "http://caml.inria.fr/pub/distrib/ocaml-"
255 (version-major+minor version)
256 "/ocaml-" version ".tar.xz"))
257 (patches (search-patches "ocaml-4.09-multiple-definitions.patch"))
258 (sha256
259 (base32
260 "1v3z5ar326f3hzvpfljg4xj8b9lmbrl53fn57yih1bkbx3gr3yzj"))))
261 (arguments
262 `(#:phases
263 (modify-phases %standard-phases
264 (add-after 'unpack 'patch-/bin/sh-references
265 (lambda* (#:key inputs #:allow-other-keys)
266 (let* ((sh (search-input-file inputs "/bin/sh"))
267 (quoted-sh (string-append "\"" sh "\"")))
268 (with-fluids ((%default-port-encoding #f))
269 (for-each
270 (lambda (file)
271 (substitute* file
272 (("\"/bin/sh\"")
273 (begin
274 (format (current-error-port) "\
275 patch-/bin/sh-references: ~a: changing `\"/bin/sh\"' to `~a'~%"
276 file quoted-sh)
277 quoted-sh))))
278 (find-files "." "\\.ml$"))))))
279 (replace 'build
280 (lambda _
281 (invoke "make" "-j" (number->string (parallel-job-count))
282 "world.opt")))
283 (replace 'check
284 (lambda _
285 (with-directory-excursion "testsuite"
286 (invoke "make" "all")))))))))
287
288 ;; This package is a bootstrap package for ocaml-4.07. It builds from camlboot,
289 ;; using the upstream sources for ocaml 4.07. It installs a bytecode ocamllex
290 ;; and ocamlc, the bytecode interpreter ocamlrun, and generated .depend files
291 ;; that we otherwise remove for bootstrap purposes.
292 (define ocaml-4.07-boot
293 (package
294 (inherit ocaml-4.09)
295 (name "ocaml-boot")
296 (version "4.07.1")
297 (source (origin
298 (method url-fetch)
299 (uri (string-append
300 "http://caml.inria.fr/pub/distrib/ocaml-"
301 (version-major+minor version)
302 "/ocaml-" version ".tar.xz"))
303 (sha256
304 (base32
305 "1f07hgj5k45cylj1q3k5mk8yi02cwzx849b1fwnwia8xlcfqpr6z"))
306 (patches (search-patches "ocaml-multiple-definitions.patch"))
307 (modules '((guix build utils)))
308 (snippet
309 `(begin
310 ;; Remove bootstrap binaries and pre-generated source files,
311 ;; to ensure we actually bootstrap properly.
312 (for-each delete-file (find-files "." "^.depend$"))
313 (delete-file "boot/ocamlc")
314 (delete-file "boot/ocamllex")))))
315 (arguments
316 `(#:tests? #f
317 #:phases
318 (modify-phases %standard-phases
319 (add-before 'configure 'copy-bootstrap
320 (lambda* (#:key inputs #:allow-other-keys)
321 (let ((camlboot (assoc-ref inputs "camlboot")))
322 (copy-file (string-append camlboot "/bin/ocamllex") "boot/ocamllex")
323 (copy-file (string-append camlboot "/bin/ocamlc") "boot/ocamlc")
324 (chmod "boot/ocamllex" #o755)
325 (chmod "boot/ocamlc" #o755))))
326 (replace 'configure
327 (lambda* (#:key outputs #:allow-other-keys)
328 (let* ((out (assoc-ref outputs "out"))
329 (mandir (string-append out "/share/man")))
330 (invoke "./configure"
331 "--prefix" out
332 "--mandir" mandir))))
333 (replace 'build
334 (lambda* (#:key parallel-build? #:allow-other-keys)
335 (define* (make . args)
336 (apply invoke "make"
337 (append (if parallel-build?
338 `("-j" ,(number->string (parallel-job-count)))
339 '())
340 args)))
341 ;; create empty .depend files because they are included by various
342 ;; Makefiles, and they have no rule to generate them.
343 (invoke "touch" ".depend" "stdlib/.depend" "byterun/.depend"
344 "tools/.depend" "lex/.depend" "asmrun/.depend"
345 "debugger/.depend" "ocamltest/.depend" "ocamldoc/.depend"
346 "ocamldoc/stdlib_non_prefixed/.depend"
347 "otherlibs/bigarray/.depend" "otherlibs/graph/.depend"
348 "otherlibs/raw_spacetime_lib/.depend" "otherlibs/str/.depend"
349 "otherlibs/systhreads/.depend" "otherlibs/threads/.depend"
350 "otherlibs/unix/.depend" "otherlibs/win32unix/.depend")
351 ;; We cannot build ocamldep until we have created all the .depend
352 ;; files, so replace it with ocamlc -depend.
353 (substitute* "tools/Makefile"
354 (("\\$\\(CAMLRUN\\) ./ocamldep") "../boot/ocamlc -depend"))
355 (substitute* '("otherlibs/graph/Makefile"
356 "otherlibs/systhreads/Makefile"
357 "otherlibs/threads/Makefile"
358 "otherlibs/unix/Makefile")
359 (("\\$\\(CAMLRUN\\) ../../tools/ocamldep")
360 "../../boot/ocamlc -depend"))
361 (substitute* '("otherlibs/bigarray/Makefile"
362 "otherlibs/raw_spacetime_lib/Makefile"
363 "otherlibs/str/Makefile"
364 "otherlibs/win32unix/Makefile")
365 (("\\$\\(CAMLRUN\\) \\$\\(ROOTDIR\\)/tools/ocamldep")
366 "../../boot/ocamlc -depend"))
367 ;; Ensure we copy needed file, so we can generate a proper .depend
368 (substitute* "ocamldoc/Makefile"
369 (("include Makefile.unprefix")
370 "include Makefile.unprefix
371 depend: $(STDLIB_MLIS) $(STDLIB_DEPS)"))
372 ;; Generate required tools for `alldepend'
373 (make "-C" "byterun" "depend")
374 (make "-C" "byterun" "all")
375 (copy-file "byterun/ocamlrun" "boot/ocamlrun")
376 (make "ocamlyacc")
377 (copy-file "yacc/ocamlyacc" "boot/ocamlyacc")
378 (make "-C" "stdlib" "sys.ml")
379 (make "-C" "stdlib" "CAMLDEP=../boot/ocamlc -depend" "depend")
380 ;; Build and copy files later used by `tools'
381 (make "-C" "stdlib" "COMPILER="
382 "CAMLC=../boot/ocamlc -use-prims ../byterun/primitives"
383 "all")
384 (for-each
385 (lambda (file)
386 (copy-file file (string-append "boot/" (basename file))))
387 (cons* "stdlib/stdlib.cma" "stdlib/std_exit.cmo" "stdlib/camlheader"
388 (find-files "stdlib" ".*.cmi$")))
389 (symlink "../byterun/libcamlrun.a" "boot/libcamlrun.a")
390 ;; required for ocamldoc/stdlib_non_prefixed
391 (make "parsing/parser.mli")
392 ;; required for dependencies
393 (make "-C" "tools"
394 "CAMLC=../boot/ocamlc -nostdlib -I ../boot -use-prims ../byterun/primitives -I .."
395 "make_opcodes" "cvt_emit")
396 ;; generate all remaining .depend files
397 (make "alldepend"
398 (string-append "ocamllex=" (getcwd) "/boot/ocamlrun "
399 (getcwd) "/boot/ocamllex")
400 (string-append "CAMLDEP=" (getcwd) "/boot/ocamlc -depend")
401 (string-append "OCAMLDEP=" (getcwd) "/boot/ocamlc -depend")
402 (string-append "ocamldep=" (getcwd) "/boot/ocamlc -depend"))
403 ;; Build ocamllex
404 (make "CAMLC=boot/ocamlc -nostdlib -I boot -use-prims byterun/primitives"
405 "ocamlc")
406 ;; Build ocamlc
407 (make "-C" "lex"
408 "CAMLC=../boot/ocamlc -strict-sequence -nostdlib -I ../boot -use-prims ../byterun/primitives"
409 "all")))
410 (replace 'install
411 (lambda* (#:key outputs #:allow-other-keys)
412 (let* ((out (assoc-ref outputs "out"))
413 (bin (string-append out "/bin"))
414 (depends (string-append out "/share/depends")))
415 (mkdir-p bin)
416 (mkdir-p depends)
417 (install-file "ocamlc" bin)
418 (install-file "lex/ocamllex" bin)
419 (for-each
420 (lambda (file)
421 (let ((dir (string-append depends "/" (dirname file))))
422 (mkdir-p dir)
423 (install-file file dir)))
424 (find-files "." "^\\.depend$"))))))))
425 (native-inputs
426 `(("camlboot" ,camlboot)
427 ("perl" ,perl)
428 ("pkg-config" ,pkg-config)))))
429
430 (define-public ocaml-4.07
431 (package
432 (inherit ocaml-4.07-boot)
433 (name "ocaml")
434 (arguments
435 (substitute-keyword-arguments (package-arguments ocaml-4.09)
436 ((#:phases phases)
437 `(modify-phases ,phases
438 (add-before 'configure 'copy-bootstrap
439 (lambda* (#:key inputs #:allow-other-keys)
440 (let ((ocaml (assoc-ref inputs "ocaml")))
441 (copy-file (string-append ocaml "/bin/ocamllex") "boot/ocamllex")
442 (copy-file (string-append ocaml "/bin/ocamlc") "boot/ocamlc")
443 (chmod "boot/ocamllex" #o755)
444 (chmod "boot/ocamlc" #o755)
445 (let ((rootdir (getcwd)))
446 (with-directory-excursion (string-append ocaml "/share/depends")
447 (for-each
448 (lambda (file)
449 (copy-file file (string-append rootdir "/" file)))
450 (find-files "." ".")))))))
451 (replace 'configure
452 (lambda* (#:key outputs #:allow-other-keys)
453 (let* ((out (assoc-ref outputs "out"))
454 (mandir (string-append out "/share/man")))
455 ;; Custom configure script doesn't recognize
456 ;; --prefix=<PREFIX> syntax (with equals sign).
457 (invoke "./configure"
458 "--prefix" out
459 "--mandir" mandir))))))))
460 (native-inputs
461 `(("ocaml" ,ocaml-4.07-boot)
462 ("perl" ,perl)
463 ("pkg-config" ,pkg-config)))))
464
465 (define-public ocaml ocaml-4.14)
466
467 (define-public ocamlbuild
468 (package
469 (name "ocamlbuild")
470 (version "0.14.1")
471 (source
472 (origin
473 (method git-fetch)
474 (uri (git-reference
475 (url "https://github.com/ocaml/ocamlbuild")
476 (commit version)))
477 (file-name (git-file-name name version))
478 (sha256
479 (base32 "00ma0g6ajll9awp2bp303bawac8ync4k9w2a6vix0k4nw3003gb4"))))
480 (build-system ocaml-build-system)
481 (arguments
482 `(#:make-flags
483 ,#~(list (string-append "OCAMLBUILD_PREFIX=" #$output)
484 (string-append "OCAMLBUILD_BINDIR=" #$output "/bin")
485 (string-append "OCAMLBUILD_LIBDIR=" #$output
486 "/lib/ocaml/site-lib")
487 (string-append "OCAMLBUILD_MANDIR=" #$output "/share/man"))
488 #:phases
489 (modify-phases %standard-phases
490 (delete 'configure))
491 ; some failures because of changes in OCaml's error message formating
492 #:tests? #f))
493 (home-page "https://github.com/ocaml/ocamlbuild")
494 (synopsis "OCaml build tool")
495 (description "OCamlbuild is a generic build tool, that has built-in rules
496 for building OCaml library and programs.")
497 (license license:lgpl2.1+)))
498
499 (define-public camlidl
500 (package
501 (name "camlidl")
502 (version "1.09")
503 (source
504 (origin
505 (method git-fetch)
506 (uri (git-reference
507 (url "https://github.com/xavierleroy/camlidl")
508 (commit "camlidl109")))
509 (sha256
510 (base32 "0zrkaq7fk23b2b9vg6jwdjx7l0hdqp4synbbrw1zcg8gjf6n3c80"))
511 (file-name (git-file-name name version))))
512 (build-system gnu-build-system)
513 (arguments
514 `(#:tests? #f ;; No test suite
515 #:make-flags
516 (list
517 (string-append
518 "BINDIR=" (assoc-ref %outputs "out") "/bin")
519 (string-append
520 "OCAMLLIB=" (assoc-ref %outputs "out") "/lib/ocaml/site-lib/camlidl"))
521 #:phases
522 (modify-phases %standard-phases
523 (delete 'configure)
524 (replace 'build
525 (lambda _
526 (copy-file "config/Makefile.unix" "config/Makefile")
527 ;; Note: do not pass '-jN' as this appears to not be
528 ;; parallel-safe (race condition related to libcamlidl.a).
529 (invoke "make" "all")
530 #t))
531 (add-before 'install 'create-target-directories
532 (lambda* (#:key outputs #:allow-other-keys)
533 (let ((out (string-append (assoc-ref outputs "out"))))
534 (mkdir-p
535 (string-append out "/bin"))
536 (mkdir-p
537 (string-append out "/lib/ocaml/site-lib/camlidl/stublibs"))
538 (mkdir-p
539 (string-append out "/lib/ocaml/site-lib/camlidl/caml")))
540 #t))
541 (add-after 'install 'install-meta
542 (lambda* (#:key outputs #:allow-other-keys)
543 (let ((out (assoc-ref outputs "out")))
544 (with-output-to-file
545 (string-append out "/lib/ocaml/site-lib/camlidl/META")
546 (lambda _
547 (display
548 (string-append
549 "description = \"Stub code generator for OCaml/C interface\"
550 version = \"" ,version "\"
551 directory = \"^\"
552 archive(byte) = \"com.cma\"
553 archive(native) = \"com.cmxa\"")))))
554 #t)))))
555 (native-inputs
556 (list ocaml))
557 (home-page "https://github.com/xavierleroy/camlidl")
558 (synopsis "Stub code generator for OCaml/C interface")
559 (description
560 "Camlidl is a stub code generator for Objective Caml. It generates stub
561 code for interfacing Caml with C from an IDL description of the C functions.")
562 (license license:lgpl2.1)))
563
564 (define-public ocaml-extlib
565 (package
566 (name "ocaml-extlib")
567 (version "1.7.9")
568 (source (origin
569 (method url-fetch)
570 (uri (string-append "https://ygrek.org/p/release/ocaml-extlib/"
571 "extlib-" version ".tar.gz"))
572 (sha256
573 (base32
574 "1jydzw2n84cfiz9y6lk4gih4wbr8jybanmiryfs01svd07g4vpjq"))))
575 (build-system ocaml-build-system)
576 (arguments
577 `(#:phases
578 (modify-phases %standard-phases
579 (delete 'configure))))
580 (native-inputs
581 (list ocaml-cppo))
582 (home-page "https://github.com/ygrek/ocaml-extlib")
583 (synopsis "Complete and small extension for OCaml standard library")
584 (description "This library adds new functions to OCaml standard library
585 modules, modifies some functions in order to get better performances or
586 safety (tail-recursive) and also provides new modules which should be useful
587 for day to day programming.")
588 ;; With static-linking exception
589 (license license:lgpl2.1+)))
590
591 (define-public ocaml-cudf
592 (package
593 (name "ocaml-cudf")
594 (version "0.9")
595 (source
596 (origin
597 (method url-fetch)
598 (uri "https://gforge.inria.fr/frs/download.php/36602/cudf-0.9.tar.gz")
599 (sha256
600 (base32
601 "0771lwljqwwn3cryl0plny5a5dyyrj4z6bw66ha5n8yfbpcy8clr"))))
602 (build-system ocaml-build-system)
603 (propagated-inputs (list ocaml-extlib))
604 (native-inputs
605 (list perl ocamlbuild ocaml-ounit))
606 (arguments
607 `(#:make-flags
608 ,#~(list
609 "all" "opt"
610 (string-append "BINDIR=" #$output "/bin"))
611 #:phases
612 (modify-phases %standard-phases
613 (delete 'configure))))
614 (home-page "https://www.mancoosi.org/cudf/")
615 (synopsis "CUDF library (part of the Mancoosi tools)")
616 (description "CUDF (for Common Upgradeability Description Format) is a
617 format for describing upgrade scenarios in package-based Free and Open Source
618 Software distribution.")
619 ;; With static-linking exception
620 (license license:lgpl2.1+)))
621
622 (define-public ocaml-mccs
623 (package
624 (name "ocaml-mccs")
625 (version "1.1+14")
626 (source (origin
627 (method git-fetch)
628 (uri (git-reference
629 (url "https://github.com/AltGr/ocaml-mccs")
630 (commit version)))
631 (file-name (git-file-name name version))
632 (sha256
633 (base32
634 "17bvm0jhhs8h3p5sbb65asj53a8sxl634cc0kvcivpams74837zq"))))
635 (build-system dune-build-system)
636 (propagated-inputs (list ocaml-cudf))
637 (home-page "https://www.i3s.unice.fr/~cpjm/misc/")
638 (synopsis "Upgrade path problem solver")
639 (description "Mccs (Multi Criteria CUDF Solver) is a CUDF problem solver.
640 Mccs take as input a CUDF problem and computes the best solution according to
641 a set of criteria. It relies on a Integer Programming solver or a
642 Pseudo Boolean solver to achieve its task. Mccs can use a wide set of
643 underlying solvers like Cplex, Gurobi, Lpsolver, Glpk, CbC, SCIP or WBO.")
644 (license (list
645 license:bsd-3
646 license:gpl3+
647 ;; With static-linking exception
648 license:lgpl2.1+))))
649
650 (define-public ocaml-dose3
651 (package
652 (name "ocaml-dose3")
653 (version "5.0.1")
654 (source (origin
655 (method url-fetch)
656 (uri "https://gforge.inria.fr/frs/download.php/file/36063/dose3-5.0.1.tar.gz")
657 (sha256
658 (base32
659 "00yvyfm4j423zqndvgc1ycnmiffaa2l9ab40cyg23pf51qmzk2jm"))
660 (patches
661 (search-patches
662 "ocaml-dose3-add-unix-dependency.patch"
663 "ocaml-dose3-Fix-for-ocaml-4.06.patch"
664 "ocaml-dose3-dont-make-printconf.patch"
665 "ocaml-dose3-Install-mli-cmx-etc.patch"))))
666 (build-system ocaml-build-system)
667 (arguments
668 `(#:tests? #f ;the test suite requires python 2
669 #:configure-flags
670 ,#~(list (string-append "SHELL="
671 #+(file-append (canonical-package bash-minimal)
672 "/bin/sh")))
673 #:make-flags
674 ,#~(list (string-append "LIBDIR=" #$output "/lib/ocaml/site-lib"))))
675 (propagated-inputs
676 (list ocaml-graph ocaml-cudf ocaml-extlib ocaml-re))
677 (native-inputs
678 (list perl
679 ocaml-extlib
680 ocamlbuild
681 ocaml-cppo))
682 (home-page "https://www.mancoosi.org/software/")
683 (synopsis "Package distribution management framework")
684 (description "Dose3 is a framework made of several OCaml libraries for
685 managing distribution packages and their dependencies. Though not tied to
686 any particular distribution, dose3 constitutes a pool of libraries which
687 enable analyzing packages coming from various distributions. Besides basic
688 functionalities for querying and setting package properties, dose3 also
689 implements algorithms for solving more complex problems such as monitoring
690 package evolutions, correct and complete dependency resolution and
691 repository-wide uninstallability checks.")
692 ;; with static-linking exception
693 (license license:lgpl2.1+)))
694
695 (define-public ocaml-down
696 (package
697 (name "ocaml-down")
698 (version "0.1.0")
699 (source
700 (origin
701 (method url-fetch)
702 (uri (string-append "https://erratique.ch/software/down/releases/down-"
703 version ".tbz"))
704 (sha256
705 (base32
706 "1q467y6qz96ndiybpmggdcnrcip49kxw2i93pb54j1xjzkv1vnl1"))))
707 (build-system ocaml-build-system)
708 (arguments
709 `(#:tests? #f ;no tests
710 #:phases
711 (modify-phases %standard-phases
712 (delete 'configure))
713 #:build-flags
714 ,#~(list "build" "--lib-dir"
715 (string-append #$output "/lib/ocaml/site-lib"))))
716 (native-inputs
717 (list ocaml-findlib ocamlbuild ocaml-topkg opam))
718 (home-page "https://erratique.ch/software/down")
719 (synopsis "OCaml toplevel (REPL) upgrade")
720 (description "Down is an unintrusive user experience upgrade for the
721 @command{ocaml} toplevel (REPL).
722
723 Simply load the zero dependency @code{down} library in the @command{ocaml}
724 toplevel and you get line edition, history, session support and identifier
725 completion and documentation with @command{ocp-index}.
726
727 Add this to your @file{~/.ocamlinit}:
728
729 @example
730 #use \"down.top\"
731 @end example
732
733 You may also need to add this to your @file{~/.ocamlinit} and declare
734 the environment variable @code{OCAML_TOPLEVEL_PATH}:
735
736 @example
737 let () =
738 try Topdirs.dir_directory (Sys.getenv \"OCAML_TOPLEVEL_PATH\")
739 with Not_found -> ()
740 @end example
741
742 OR
743
744 @example
745 let () = String.split_on_char ':' (Sys.getenv \"OCAMLPATH\")
746 |> List.filter (fun x -> Filename.check_suffix x \"/site-lib\")
747 |> List.map (fun x -> x ^ \"/toplevel\")
748 (* remove the line below if you don't want to see the text
749 every time you start the toplevel *)
750 |> List.map (fun x -> Printf.printf \"adding directory %s\\n\" x; x)
751 |> List.iter Topdirs.dir_directory;;
752 @end example")
753 (license license:isc)))
754
755 (define-public ocaml-opam-file-format
756 (package
757 (name "ocaml-opam-file-format")
758 (version "2.1.4")
759 (source (origin
760 (method git-fetch)
761 (uri (git-reference
762 (url "https://github.com/ocaml/opam-file-format")
763 (commit version)))
764 (file-name (git-file-name name version))
765 (sha256
766 (base32
767 "0dmnb1mqdy4913f9ma446hi5m99q7hfibj6j0m8x2wsfnfy2fw62"))))
768 (build-system ocaml-build-system)
769 (arguments
770 `(#:tests? #f; No tests
771 #:make-flags ,#~(list (string-append "LIBDIR=" #$output
772 "/lib/ocaml/site-lib"))
773 #:phases
774 (modify-phases %standard-phases
775 (delete 'configure))))
776 (home-page "https://opam.ocaml.org")
777 (synopsis "Parser and printer for the opam file syntax")
778 (description "This package contains a parser and a pretty-printer for
779 the opam file format.")
780 ;; With static-linking exception
781 (license license:lgpl2.1+)))
782
783 (define-public opam
784 (package
785 (name "opam")
786 (version "2.1.2")
787 (source (origin
788 (method git-fetch)
789 (uri (git-reference
790 (url "https://github.com/ocaml/opam")
791 (commit version)))
792 (file-name (git-file-name name version))
793 (sha256
794 (base32
795 "0mdr32mg63yaw89p44zx8b9dxp1167ckmlxkp8svd6fwgb3z49yx"))))
796 (build-system dune-build-system)
797 (arguments
798 `(#:test-target "."
799 #:phases
800 (modify-phases %standard-phases
801 (add-before 'build 'pre-build
802 (lambda* (#:key inputs make-flags #:allow-other-keys)
803 (let ((bash (assoc-ref inputs "bash"))
804 (bwrap (search-input-file inputs "/bin/bwrap")))
805 (substitute* "src/core/opamSystem.ml"
806 (("\"/bin/sh\"")
807 (string-append "\"" bash "/bin/sh\""))
808 (("getconf")
809 (which "getconf")))
810 ;; Use bwrap from the store directly.
811 (substitute* "src/state/shellscripts/bwrap.sh"
812 (("-v bwrap") (string-append "-v " bwrap))
813 (("exec bwrap") (string-append "exec " bwrap))
814 ;; Mount /gnu and /run/current-system in the
815 ;; isolated environment when building with opam.
816 ;; This is necessary for packages to find external
817 ;; dependencies, such as a C compiler, make, etc...
818 (("^add_sys_mounts /usr")
819 (string-append "add_sys_mounts "
820 (%store-directory)
821 " /run/current-system /usr")))
822 (substitute* "src/client/opamInitDefaults.ml"
823 (("\"bwrap\"") (string-append "\"" bwrap "\""))))))
824 (add-before 'check 'prepare-checks
825 (lambda* (#:key inputs #:allow-other-keys)
826 ;; Opam tests need to run an isolated environment from a writable
827 ;; home directory.
828 (mkdir-p "test-home")
829 (setenv "HOME" (string-append (getcwd) "/test-home"))
830
831 ;; Opam tests require data from opam-repository. Instead of
832 ;; downloading them with wget from the guix environment, copy the
833 ;; content to the expected directory.
834 (substitute* "tests/reftests/dune.inc"
835 (("tar -C.*opam-archive-([0-9a-f]*)[^)]*" _ commit)
836 (string-append "rmdir %{targets}) (run cp -r "
837 (assoc-ref inputs (string-append "opam-repo-" commit))
838 "/ %{targets}) (run chmod +w -R %{targets}"))
839 (("wget[^)]*") "touch %{targets}")
840 ;; Disable a failing test because of different line wrapping
841 (("diff cli-versioning.test cli-versioning.out") "run true")
842 ;; Disable a failing test because it tries to clone a git
843 ;; repository from inside bwrap
844 (("diff upgrade-format.test upgrade-format.out") "run true"))
845 (substitute* "tests/reftests/dune"
846 ;; Because of our changes to the previous file, we cannot check
847 ;; it can be regenerated
848 (("diff dune.inc dune.inc.gen") "run true"))
849 ;; Ensure we can run the generated build.sh (no /bin/sh)
850 (substitute* '("tests/reftests/legacy-local.test"
851 "tests/reftests/legacy-git.test")
852 (("#! ?/bin/sh")
853 (string-append "#!"
854 (search-input-file inputs "/bin/sh"))))
855 (substitute* "tests/reftests/testing-env"
856 (("OPAMSTRICT=1")
857 (string-append "OPAMSTRICT=1\nLIBRARY_PATH="
858 (assoc-ref inputs "libc") "/lib"))))))))
859 (native-inputs
860 (let ((opam-repo (lambda (commit hash)
861 (origin
862 (method git-fetch)
863 (uri (git-reference
864 (url "https://github.com/ocaml/opam-repository")
865 (commit commit)))
866 (file-name (git-file-name "opam-repo" commit))
867 (sha256 (base32 hash))))))
868 `(("dune" ,dune)
869 ("ocaml-cppo" ,ocaml-cppo)
870
871 ;; For tests.
872 ("git" ,git-minimal)
873 ("openssl" ,openssl)
874 ("python" ,python-wrapper)
875 ("rsync" ,rsync)
876 ("unzip" ,unzip)
877 ("which" ,which)
878
879 ;; Data for tests
880 ("opam-repo-009e00fa" ,(opam-repo "009e00fa86300d11c311309a2544e5c6c3eb8de2"
881 "1wwy0rwrsjf4q10j1rh1dazk32fbzhzy6f7zl6qmndidx9b1bq7w"))
882 ("opam-repo-ad4dd344" ,(opam-repo "ad4dd344fe5cd1cab49ced49d6758a9844549fb4"
883 "1a1qj47kj8xjdnc4zc50ijrix1kym1n7k20n3viki80a7518baw8"))
884 ("opam-repo-c1d23f0e" ,(opam-repo "c1d23f0e17ec83a036ebfbad1c78311b898a2ca0"
885 "0j9abisx3ifzm66ci3p45mngmz4f0fx7yd9jjxrz3f8w5jffc9ii"))
886 ("opam-repo-f372039d" ,(opam-repo "f372039db86a970ef3e662adbfe0d4f5cd980701"
887 "0ld7fcry6ss6fmrpswvr6bikgx299w97h0gwrjjh7kd7rydsjdws")))))
888 (inputs
889 (list ocaml ncurses curl bubblewrap))
890 (propagated-inputs
891 (list ocaml-cmdliner ocaml-dose3 ocaml-mccs ocaml-opam-file-format
892 ocaml-re))
893 (home-page "http://opam.ocamlpro.com/")
894 (synopsis "Package manager for OCaml")
895 (description
896 "OPAM is a tool to manage OCaml packages. It supports multiple
897 simultaneous compiler installations, flexible package constraints, and a
898 Git-friendly development workflow.")
899
900 ;; The 'LICENSE' file waives some requirements compared to LGPLv3.
901 (license license:lgpl3)))
902
903 (define-public ocaml-camlp-streams
904 (package
905 (name "ocaml-camlp-streams")
906 (version "5.0.1")
907 (source
908 (origin
909 (method git-fetch)
910 (uri (git-reference
911 (url "https://github.com/ocaml/camlp-streams")
912 (commit (string-append "v" version))))
913 (file-name (git-file-name name version))
914 (sha256
915 (base32 "0r3wvffkzyyk4als78akirxanzbib5hvc3kvwxpk36mlmc38aywh"))))
916 (build-system dune-build-system)
917 (arguments
918 ;; No tests
919 `(#:tests? #f))
920 (home-page "https://github.com/ocaml/camlp-streams")
921 (synopsis "Stream and Genlex libraries for use with Camlp4 and Camlp5")
922 (description
923 "This package provides two library modules:
924
925 @itemize
926 @item Stream: imperative streams, with in-place update and memoization of
927 the latest element produced.
928 @item Genlex: a small parameterized lexical analyzer producing streams of
929 tokens from streams of characters.
930 @end itemize
931
932 The two modules are designed for use with Camlp4 and Camlp5: The stream
933 patterns and stream expressions of Camlp4/Camlp5 consume and produce data of
934 type 'a Stream.t. The Genlex tokenizer can be used as a simple lexical
935 analyzer for Camlp4/Camlp5-generated parsers.
936
937 The Stream module can also be used by hand-written recursive-descent parsers,
938 but is not very convenient for this purpose.
939
940 The Stream and Genlex modules have been part of the OCaml standard library for a
941 long time, and have been distributed as part of the core OCaml system. They
942 will be removed from the OCaml standard library at some future point, but will
943 be maintained and distributed separately in the camlpstreams package.")
944 (license license:lgpl2.1)))
945
946 (define-public camlp5
947 (package
948 (name "camlp5")
949 (version "8.00.03")
950 (source
951 (origin
952 (method git-fetch)
953 (uri (git-reference
954 (url "https://github.com/camlp5/camlp5")
955 (commit (string-append "rel" version))))
956 (file-name (git-file-name name version))
957 (sha256
958 (base32 "1fnvmaw9cland09pjx5h6w3f6fz9s23l4nbl4m9fcaa2i4dpraz6"))))
959 (build-system gnu-build-system)
960 (arguments
961 `(#:tests? #f ; XXX TODO figure out how to run the tests
962 #:phases
963 (modify-phases %standard-phases
964 (replace 'configure
965 (lambda* (#:key outputs #:allow-other-keys)
966 (let* ((out (assoc-ref outputs "out"))
967 (mandir (string-append out "/share/man")))
968 ;; Custom configure script doesn't recognize
969 ;; --prefix=<PREFIX> syntax (with equals sign).
970 (invoke "./configure"
971 "--prefix" out
972 "--mandir" mandir))))
973 (add-before 'build 'fix-/bin-references
974 (lambda _
975 (substitute* "config/Makefile"
976 (("/bin/rm") "rm"))
977 #t))
978 (replace 'build
979 (lambda _
980 (invoke "make" "-j" (number->string
981 (parallel-job-count))
982 "world.opt")))
983 ;; Required for findlib to find camlp5's libraries
984 (add-after 'install 'install-meta
985 (lambda* (#:key outputs #:allow-other-keys)
986 (install-file "etc/META" (string-append (assoc-ref outputs "out")
987 "/lib/ocaml/camlp5/"))
988 #t)))))
989 (inputs
990 (list ocaml ocaml-camlp-streams))
991 (native-inputs
992 (list perl ocaml-findlib))
993 (home-page "https://camlp5.github.io/")
994 (synopsis "Pre-processor Pretty Printer for OCaml")
995 (description
996 "Camlp5 is a Pre-Processor-Pretty-Printer for Objective Caml. It offers
997 tools for syntax (Stream Parsers and Grammars) and the ability to modify the
998 concrete syntax of the language (Quotations, Syntax Extensions).")
999 ;; Most files are distributed under bsd-3, but ocaml_stuff/* is under qpl.
1000 (license (list license:bsd-3 license:qpl))))
1001
1002 (define-public hevea
1003 (package
1004 (name "hevea")
1005 (version "2.35")
1006 (source (origin
1007 (method url-fetch)
1008 (uri (string-append "http://hevea.inria.fr/old/"
1009 "hevea-" version ".tar.gz"))
1010 (sha256
1011 (base32
1012 "1jwydkb9ldb1sx815c364dxgr569f2rbbzgxbn2kanrybpdbm2gi"))))
1013 (build-system gnu-build-system)
1014 (inputs
1015 (list ocaml))
1016 (native-inputs
1017 (list ocamlbuild))
1018 (arguments
1019 `(#:tests? #f ; no test suite
1020 #:make-flags (list (string-append "PREFIX=" %output))
1021 #:phases (modify-phases %standard-phases
1022 (delete 'configure)
1023 (add-before 'build 'patch-/bin/sh
1024 (lambda _
1025 (substitute* "_tags"
1026 (("/bin/sh") (which "sh")))
1027 #t)))))
1028 (home-page "http://hevea.inria.fr/")
1029 (synopsis "LaTeX to HTML translator")
1030 (description
1031 "HeVeA is a LaTeX to HTML translator that generates modern HTML 5. It is
1032 written in Objective Caml.")
1033 (license license:qpl)))
1034
1035 (define-public ocaml-num
1036 (package
1037 (name "ocaml-num")
1038 (version "1.4")
1039 (source
1040 (origin
1041 (method git-fetch)
1042 (uri (git-reference
1043 (url "https://github.com/ocaml/num")
1044 (commit (string-append "v" version))))
1045 (file-name (git-file-name name version))
1046 (sha256
1047 (base32 "1vzdnvpj5dbj3ifx03v25pj2jj1ccav072v4d29pk1czdba2lzfc"))))
1048 (build-system dune-build-system)
1049 (arguments
1050 `(#:phases
1051 (modify-phases %standard-phases
1052 (add-after 'unpack 'fix-race
1053 (lambda _
1054 ;; There's a race between bng.o and bng_generic.c. Both depend on
1055 ;; the architecture specific bng.c, but only the latter declares
1056 ;; the dependency.
1057 (mkdir-p "_build/default/src")
1058 (for-each
1059 (lambda (f)
1060 (copy-file f (string-append "_build/default/" f)))
1061 (find-files "src" "bng_.*\\.c")))))))
1062 (home-page "https://github.com/ocaml/num")
1063 (synopsis "Arbitrary-precision integer and rational arithmetic")
1064 (description "OCaml-Num contains the legacy Num library for
1065 arbitrary-precision integer and rational arithmetic that used to be part of
1066 the OCaml core distribution.")
1067 (license license:lgpl2.1+))); with linking exception
1068
1069 (define-public emacs-tuareg
1070 ;; Last upstream release on Sept., 14th, 2018, since then "Package cl
1071 ;; deprecated" or 'lexical-binding' and others had been fixed.
1072 (let ((commit "ccde45bbc292123ec20617f1af7f7e19f7481545")
1073 (revision "0"))
1074 (package
1075 (name "emacs-tuareg")
1076 (version (git-version "2.2.0" revision commit))
1077 (source
1078 (origin
1079 (method git-fetch)
1080 (uri (git-reference
1081 (url "https://github.com/ocaml/tuareg")
1082 (commit commit)))
1083 (file-name (git-file-name name version))
1084 (sha256
1085 (base32 "1yxv4bnqarilnpg5j7wywall8170hwvm0q4xx06yqjgcn8pq1lac"))))
1086 (build-system gnu-build-system)
1087 (native-inputs
1088 `(("emacs" ,emacs-minimal)
1089 ("opam" ,opam)))
1090 (arguments
1091 `(#:phases
1092 (modify-phases %standard-phases
1093 (add-after 'unpack 'make-git-checkout-writable
1094 (lambda _
1095 (for-each make-file-writable (find-files "."))
1096 #t))
1097 (delete 'configure)
1098 (add-before 'install 'fix-install-path
1099 (lambda* (#:key outputs #:allow-other-keys)
1100 (substitute* "Makefile"
1101 (("/emacs/site-lisp")
1102 (string-append (assoc-ref %outputs "out")
1103 "/share/emacs/site-lisp/")))
1104 #t))
1105 (add-after 'install 'post-install
1106 (lambda* (#:key outputs #:allow-other-keys)
1107 (symlink "tuareg.el"
1108 (string-append (assoc-ref outputs "out")
1109 "/share/emacs/site-lisp/"
1110 "tuareg-autoloads.el"))
1111 #t)))))
1112 (home-page "https://github.com/ocaml/tuareg")
1113 (synopsis "OCaml programming mode, REPL, debugger for Emacs")
1114 (description "Tuareg helps editing OCaml code, to highlight important
1115 parts of the code, to run an OCaml REPL, and to run the OCaml debugger within
1116 Emacs.")
1117 (license license:gpl2+))))
1118
1119 (define-public ocaml-menhir
1120 (package
1121 (name "ocaml-menhir")
1122 (version "20220210")
1123 (source
1124 (origin
1125 (method git-fetch)
1126 (uri (git-reference
1127 (url "https://gitlab.inria.fr/fpottier/menhir.git")
1128 (commit version)))
1129 (file-name (git-file-name name version))
1130 (sha256
1131 (base32 "0f31isr3cyiishflz6qr4xc3gp9xwf32r3vxdvm5wnr2my1fnn1n"))))
1132 (build-system dune-build-system)
1133 (inputs
1134 (list ocaml))
1135 (arguments
1136 `(#:tests? #f)) ; No check target
1137 (properties `((ocaml4.07-variant . ,(delay (strip-ocaml4.07-variant ocaml-menhir)))))
1138 (home-page "http://gallium.inria.fr/~fpottier/menhir/")
1139 (synopsis "Parser generator")
1140 (description "Menhir is a parser generator. It turns high-level grammar
1141 specifications, decorated with semantic actions expressed in the OCaml
1142 programming language into parsers, again expressed in OCaml. It is based on
1143 Knuth’s LR(1) parser construction technique.")
1144 ;; The file src/standard.mly and all files listed in src/mnehirLib.mlpack
1145 ;; that have an *.ml or *.mli extension are GPL licensed. All other files
1146 ;; are QPL licensed.
1147 (license (list license:gpl2+ license:qpl))))
1148
1149 (define-public ocaml-bigarray-compat
1150 (package
1151 (name "ocaml-bigarray-compat")
1152 (version "1.1.0")
1153 (source (origin
1154 (method git-fetch)
1155 (uri (git-reference
1156 (url "https://github.com/mirage/bigarray-compat")
1157 (commit (string-append "v" version))))
1158 (file-name (git-file-name name version))
1159 (sha256
1160 (base32
1161 "0hif5baiwswdblymyfbxh9066pfqynlz5vj3b2brpn0a12k6i5fq"))))
1162 (build-system dune-build-system)
1163 (arguments
1164 `(#:tests? #f)); no tests
1165 (home-page "https://github.com/mirage/bigarray-compat")
1166 (synopsis "OCaml compatibility library")
1167 (description "This package contains a compatibility library for
1168 @code{Stdlib.Bigarray} in OCaml.")
1169 (license license:isc)))
1170
1171 (define-public lablgtk
1172 (package
1173 (name "lablgtk")
1174 (version "2.18.11")
1175 (source (origin
1176 (method git-fetch)
1177 (uri (git-reference
1178 (url "https://github.com/garrigue/lablgtk")
1179 (commit version)))
1180 (file-name (git-file-name name version))
1181 (sha256
1182 (base32
1183 "179ipx0c6bpxm4gz0syxgqy09dp5p4x9qsdil7s9jlx8ffg1mm0w"))))
1184 (build-system gnu-build-system)
1185 (native-inputs
1186 `(("ocaml" ,ocaml)
1187 ("findlib" ,ocaml-findlib)
1188 ("pkg-config" ,pkg-config)))
1189 ;; FIXME: Add inputs gtkgl-2.0, libpanelapplet-2.0, gtkspell-2.0,
1190 ;; and gtk+-quartz-2.0 once available.
1191 (inputs
1192 (list gtk+-2
1193 gtksourceview-2
1194 libgnomecanvas
1195 libgnomeui
1196 libglade
1197 librsvg))
1198 (arguments
1199 `(#:tests? #f ; no check target
1200
1201 ;; opt: also install cmxa files
1202 #:make-flags (list "all" "opt"
1203 (string-append "FINDLIBDIR="
1204 (assoc-ref %outputs "out")
1205 "/lib/ocaml"))
1206 ;; Occasionally we would get "Error: Unbound module GtkThread" when
1207 ;; compiling 'gtkThInit.ml', with 'make -j'. So build sequentially.
1208 #:parallel-build? #f
1209
1210 #:phases
1211 (modify-phases %standard-phases
1212 (add-before 'install 'prepare-install
1213 (lambda* (#:key inputs outputs #:allow-other-keys)
1214 (let ((out (assoc-ref outputs "out"))
1215 (ocaml (assoc-ref inputs "ocaml")))
1216 ;; Install into the output and not the ocaml directory.
1217 (mkdir-p (string-append out "/lib/ocaml"))
1218 (substitute* "config.make"
1219 ((ocaml) out))
1220 #t))))))
1221 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-lablgtk))))
1222 (home-page "http://lablgtk.forge.ocamlcore.org/")
1223 (synopsis "GTK+ bindings for OCaml")
1224 (description
1225 "LablGtk is an OCaml interface to GTK+ 1.2 and 2.x. It provides
1226 a strongly-typed object-oriented interface that is compatible with the
1227 dynamic typing of GTK+. Most widgets and methods are available. LablGtk
1228 also provides bindings to
1229 gdk-pixbuf, the GLArea widget (in combination with LablGL), gnomecanvas,
1230 gnomeui, gtksourceview, gtkspell,
1231 libglade (and it an generate OCaml code from .glade files),
1232 libpanel, librsvg and quartz.")
1233 (license license:lgpl2.1)))
1234
1235 (define-public ocaml4.07-lablgtk
1236 (package
1237 (inherit lablgtk)
1238 (name "ocaml4.07-lablgtk")
1239 (native-inputs
1240 `(("ocaml" ,ocaml-4.07)
1241 ("findlib" ,ocaml4.07-findlib)
1242 ("pkg-config" ,pkg-config)))
1243 (properties '())))
1244
1245 (define-public unison
1246 (package
1247 (name "unison")
1248 (version "2.51.2")
1249 (source (origin
1250 (method git-fetch)
1251 (uri (git-reference
1252 (url "https://github.com/bcpierce00/unison")
1253 (commit (string-append "v" version))))
1254 (file-name (git-file-name name version))
1255 (sha256
1256 (base32
1257 "1bykiyc0dc5pkw8x370qkg2kygq9pq7yqzsgczd3y13b6ivm4sdq"))
1258 (patches (search-patches "unison-fix-ocaml-4.08.patch"))))
1259 (build-system gnu-build-system)
1260 (outputs '("out"
1261 "doc")) ; 1.9 MiB of documentation
1262 (native-inputs
1263 `(("ocaml" ,ocaml-4.09)
1264 ;; For documentation
1265 ("ghostscript" ,ghostscript)
1266 ("texlive" ,(texlive-updmap.cfg
1267 (list texlive-fonts-ec texlive-dvips-l3backend)))
1268 ("hevea" ,hevea)
1269 ("lynx" ,lynx)
1270 ("which" ,which)))
1271 (arguments
1272 `(#:parallel-build? #f
1273 #:parallel-tests? #f
1274 #:test-target "selftest"
1275 #:tests? #f ; Tests require writing to $HOME.
1276 ; If some $HOME is provided, they fail with the message
1277 ; "Fatal error: Skipping some tests -- remove me!"
1278 #:phases
1279 (modify-phases %standard-phases
1280 (delete 'configure)
1281 (add-before 'install 'prepare-install
1282 (lambda* (#:key outputs #:allow-other-keys)
1283 (let* ((out (assoc-ref outputs "out"))
1284 (bin (string-append out "/bin")))
1285 (mkdir-p bin)
1286 (setenv "HOME" out) ; forces correct INSTALLDIR in Makefile
1287 #t)))
1288 (add-after 'install 'install-fsmonitor
1289 (lambda* (#:key outputs #:allow-other-keys)
1290 (let* ((out (assoc-ref outputs "out"))
1291 (bin (string-append out "/bin")))
1292 ;; 'unison-fsmonitor' is used in "unison -repeat watch" mode.
1293 (install-file "src/unison-fsmonitor" bin)
1294 #t)))
1295 (add-after 'install 'install-doc
1296 (lambda* (#:key outputs #:allow-other-keys)
1297 (let ((doc (string-append (assoc-ref outputs "doc")
1298 "/share/doc/unison")))
1299 (mkdir-p doc)
1300 ;; Remove an '\n' that prevents the doc to be generated
1301 ;; correctly with newer hevea.
1302 (substitute* "doc/local.tex"
1303 (("----SNIP----.*") "----SNIP----"))
1304 ;; This file needs write-permissions, because it's
1305 ;; overwritten by 'docs' during documentation generation.
1306 (chmod "src/strings.ml" #o600)
1307 (invoke "make" "docs"
1308 "TEXDIRECTIVES=\\\\draftfalse")
1309 (for-each (lambda (f)
1310 (install-file f doc))
1311 (map (lambda (ext)
1312 (string-append "doc/unison-manual." ext))
1313 ;; Install only html documentation,
1314 ;; since the build is currently
1315 ;; non-reproducible with the ps, pdf,
1316 ;; and dvi docs.
1317 '(;; "ps" "pdf" "dvi"
1318 "html")))
1319 #t))))))
1320 (home-page "https://www.cis.upenn.edu/~bcpierce/unison/")
1321 (synopsis "File synchronizer")
1322 (description
1323 "Unison is a file-synchronization tool. It allows two replicas of
1324 a collection of files and directories to be stored on different hosts
1325 (or different disks on the same host), modified separately, and then
1326 brought up to date by propagating the changes in each replica
1327 to the other.")
1328 (license license:gpl3+)))
1329
1330 (define-public ocaml-findlib
1331 (package
1332 (name "ocaml-findlib")
1333 (version "1.9.3")
1334 (source (origin
1335 (method url-fetch)
1336 (uri (string-append "http://download.camlcity.org/download/"
1337 "findlib" "-" version ".tar.gz"))
1338 (sha256
1339 (base32
1340 "0hfcwamcvinmww59b5i4yxbf0kxyzkp5qv3d1c7ybn9q52vgq463"))))
1341 (build-system gnu-build-system)
1342 (native-inputs
1343 (list m4 ocaml))
1344 (arguments
1345 `(#:tests? #f ; no test suite
1346 #:parallel-build? #f
1347 #:make-flags (list "all" "opt")
1348 #:phases (modify-phases %standard-phases
1349 (replace
1350 'configure
1351 (lambda* (#:key inputs outputs #:allow-other-keys)
1352 (let ((out (assoc-ref outputs "out")))
1353 (invoke
1354 "./configure"
1355 "-bindir" (string-append out "/bin")
1356 "-config" (string-append out "/etc/ocamfind.conf")
1357 "-mandir" (string-append out "/share/man")
1358 "-sitelib" (string-append out "/lib/ocaml/site-lib")
1359 "-with-toolbox"))))
1360 (replace 'install
1361 (lambda* (#:key outputs #:allow-other-keys)
1362 (let ((out (assoc-ref outputs "out")))
1363 (invoke "make" "install"
1364 (string-append "OCAML_CORE_STDLIB="
1365 out "/lib/ocaml/site-lib"))))))))
1366 (home-page "http://projects.camlcity.org/projects/findlib.html")
1367 (synopsis "Management tool for OCaml libraries")
1368 (description
1369 "The \"findlib\" library provides a scheme to manage reusable software
1370 components (packages), and includes tools that support this scheme. Packages
1371 are collections of OCaml modules for which metainformation can be stored. The
1372 packages are kept in the file system hierarchy, but with strict directory
1373 structure. The library contains functions to look the directory up that
1374 stores a package, to query metainformation about a package, and to retrieve
1375 dependency information about multiple packages. There is also a tool that
1376 allows the user to enter queries on the command-line. In order to simplify
1377 compilation and linkage, there are new frontends of the various OCaml
1378 compilers that can directly deal with packages.")
1379 (license license:x11)))
1380
1381 (define-public ocaml4.07-findlib
1382 (package
1383 (inherit ocaml-findlib)
1384 (name "ocaml4.07-findlib")
1385 (native-inputs
1386 (list m4 ocaml-4.07))))
1387
1388 (define-public ocaml4.09-findlib
1389 (package
1390 (inherit ocaml-findlib)
1391 (name "ocaml4.09-findlib")
1392 (native-inputs
1393 (list m4 ocaml-4.09))))
1394
1395 (define-public ocaml-ounit2
1396 (package
1397 (name "ocaml-ounit2")
1398 (version "2.2.6")
1399 (source (origin
1400 (method git-fetch)
1401 (uri (git-reference
1402 (url "https://github.com/gildor478/ounit.git")
1403 (commit (string-append "v" version))))
1404 (file-name (git-file-name name version))
1405 (sha256
1406 (base32
1407 "04c841hpk2yij370w30w3pis8nibnr28v74mpq2qz7z5gb8l07p1"))))
1408 (build-system dune-build-system)
1409 (propagated-inputs
1410 (list ocaml-lwt ocaml-stdlib-shims))
1411 (home-page "https://github.com/gildor478/ounit")
1412 (synopsis "Unit testing framework for OCaml")
1413 (description "OUnit2 is a unit testing framework for OCaml. It is similar
1414 to JUnit and other XUnit testing frameworks.")
1415 (license license:expat)))
1416
1417 ;; note that some tests may hang for no obvious reason.
1418 (define-public ocaml-ounit
1419 (package
1420 (inherit ocaml-ounit2)
1421 (name "ocaml-ounit")
1422 (arguments
1423 `(#:phases
1424 (modify-phases %standard-phases
1425 (replace 'install
1426 (lambda _
1427 (invoke "make" "install-ounit" ,(string-append "version="
1428 (package-version ocaml-ounit2))))))))
1429 (propagated-inputs
1430 (list ocaml-ounit2))
1431 (home-page "http://ounit.forge.ocamlcore.org")
1432 (synopsis "Unit testing framework for OCaml")
1433 (description "Unit testing framework for OCaml. It is similar to JUnit and
1434 other XUnit testing frameworks.")
1435 (license license:expat)))
1436
1437 (define-public camlzip
1438 (package
1439 (name "camlzip")
1440 (version "1.11")
1441 (source (origin
1442 (method git-fetch)
1443 (uri (git-reference
1444 (url "https://github.com/xavierleroy/camlzip")
1445 (commit (string-append
1446 "rel"
1447 (string-join (string-split version #\.) "")))))
1448 (file-name (git-file-name name version))
1449 (sha256
1450 (base32
1451 "16jnn3czxnvyjngnz167x5kw097k7izdqvkix8qvgvhdmgvqm89b"))))
1452 (build-system ocaml-build-system)
1453 (inputs
1454 (list zlib))
1455 (arguments
1456 `(#:phases
1457 (modify-phases %standard-phases
1458 (delete 'configure))
1459 #:install-target "install-findlib"
1460 #:make-flags
1461 ,#~(list "all" "allopt"
1462 (string-append "INSTALLDIR=" #$output "/lib/ocaml"))))
1463 (home-page "https://github.com/xavierleroy/camlzip")
1464 (synopsis "Provides easy access to compressed files")
1465 (description "Provides easy access to compressed files in ZIP, GZIP and
1466 JAR format. It provides functions for reading from and writing to compressed
1467 files in these formats.")
1468 (license license:lgpl2.1+)))
1469
1470 (define-public ocamlmod
1471 (package
1472 (name "ocamlmod")
1473 (version "0.0.9")
1474 (source (origin
1475 (method url-fetch)
1476 (uri (ocaml-forge-uri name version 1702))
1477 (sha256
1478 (base32
1479 "0cgp9qqrq7ayyhddrmqmq1affvfqcn722qiakjq4dkywvp67h4aa"))))
1480 (build-system ocaml-build-system)
1481 (native-inputs
1482 `(("ounit" ,ocaml-ounit)
1483 ("ocamlbuild" ,ocamlbuild)))
1484 (arguments
1485 `(#:phases
1486 (modify-phases %standard-phases
1487 ;; Tests are done during build.
1488 (delete 'check))))
1489 (home-page "https://forge.ocamlcore.org/projects/ocamlmod")
1490 (synopsis "Generate modules from OCaml source files")
1491 (description "Generate modules from OCaml source files.")
1492 (license license:lgpl2.1+))) ; with an exception
1493
1494 (define-public ocaml-zarith
1495 (package
1496 (name "ocaml-zarith")
1497 (version "1.12")
1498 (source (origin
1499 (method git-fetch)
1500 (uri (git-reference
1501 (url "https://github.com/ocaml/Zarith")
1502 (commit (string-append "release-" version))))
1503 (file-name (git-file-name name version))
1504 (sha256
1505 (base32
1506 "1jslm1rv1j0ya818yh23wf3bb6hz7qqj9pn5fwl45y9mqyqa01s9"))))
1507 (build-system ocaml-build-system)
1508 (native-inputs
1509 (list perl))
1510 (inputs
1511 (list gmp))
1512 (arguments
1513 `(#:tests? #f ; no test target
1514 #:phases
1515 (modify-phases %standard-phases
1516 (replace 'configure
1517 (lambda _ (invoke "./configure")))
1518 (add-after 'install 'move-sublibs
1519 (lambda* (#:key outputs #:allow-other-keys)
1520 (let* ((out (assoc-ref outputs "out"))
1521 (lib (string-append out "/lib/ocaml/site-lib")))
1522 (mkdir-p (string-append lib "/stublibs"))
1523 (rename-file (string-append lib "/zarith/dllzarith.so")
1524 (string-append lib "/stublibs/dllzarith.so"))))))))
1525 (home-page "https://forge.ocamlcore.org/projects/zarith/")
1526 (synopsis "Implements arbitrary-precision integers")
1527 (description "Implements arithmetic and logical operations over
1528 arbitrary-precision integers. It uses GMP to efficiently implement arithmetic
1529 over big integers. Small integers are represented as Caml unboxed integers,
1530 for speed and space economy.")
1531 (license license:lgpl2.1+))) ; with an exception
1532
1533 (define-public ocaml-frontc
1534 (package
1535 (name "ocaml-frontc")
1536 (version "4.1.0")
1537 (source (origin
1538 (method git-fetch)
1539 (uri (git-reference
1540 (url "https://github.com/BinaryAnalysisPlatform/FrontC")
1541 (commit (string-append "v" version))))
1542 (file-name (git-file-name name version))
1543 (sha256
1544 (base32
1545 "1mi1vh4qgscnb470qwidccaqd068j1bqlz6pf6wddk21paliwnqb"))))
1546 (build-system dune-build-system)
1547 (arguments
1548 `(#:test-target "test.t"
1549 #:phases
1550 (modify-phases %standard-phases
1551 (add-after 'unpack 'make-writable
1552 (lambda _
1553 (for-each make-file-writable (find-files "." ".")))))))
1554 (native-inputs
1555 (list ocaml-menhir ocaml-odoc))
1556 (properties `((upstream-name . "FrontC")
1557 (ocaml4.07-variant . ,(delay ocaml4.07-frontc))))
1558 (home-page "https://www.irit.fr/FrontC")
1559 (synopsis "C parser and lexer library")
1560 (description "FrontC is an OCAML library providing a C parser and lexer.
1561 The result is a syntactic tree easy to process with usual OCAML tree management.
1562 It provides support for ANSI C syntax, old-C K&R style syntax and the standard
1563 GNU CC attributes. It provides also a C pretty printer as an example of use.")
1564 (license license:lgpl2.1)))
1565
1566 (define-public ocaml4.07-frontc
1567 (package-with-ocaml4.07
1568 (package
1569 (inherit ocaml-frontc)
1570 (version "3.4.2")
1571 (source (origin
1572 (method git-fetch)
1573 (uri (git-reference
1574 (url "https://github.com/mirage/ocaml-base64")
1575 (commit (string-append
1576 "V_" (string-join (string-split version #\.) "_")))))
1577 (file-name (git-file-name "ocaml-frontc" version))
1578 (sha256
1579 (base32
1580 "0k7jk9hkglnkk27s62xl493jyqc017gyvwqb1lyc0ywbb001s102"))))
1581 (build-system ocaml-build-system)
1582 (arguments
1583 `(#:phases
1584 (modify-phases %standard-phases
1585 (delete 'configure)
1586 (add-after 'install 'install-meta
1587 (lambda* (#:key outputs #:allow-other-keys)
1588 (let ((out (assoc-ref outputs "out")))
1589 (with-output-to-file
1590 (string-append out "/lib/ocaml/frontc/META")
1591 (lambda _
1592 (display
1593 (string-append
1594 "description = \"Parser for the C language\"
1595 version = \"" ,version "\"
1596 requires = \"unix\"
1597 archive(byte) = \"frontc.cma\"
1598 archive(native) = \"frontc.cmxa\""))))
1599 (symlink (string-append out "/lib/ocaml/frontc")
1600 (string-append out "/lib/ocaml/FrontC"))))))
1601 #:make-flags ,#~(list (string-append "PREFIX=" #$output)
1602 "OCAML_SITE=$(LIB_DIR)/ocaml/")))
1603 (properties '()))))
1604
1605 (define-public ocaml-qcheck
1606 (package
1607 (name "ocaml-qcheck")
1608 (version "0.18.1")
1609 (source
1610 (origin
1611 (method git-fetch)
1612 (uri (git-reference
1613 (url "https://github.com/c-cube/qcheck")
1614 (commit (string-append "v" version))))
1615 (file-name (git-file-name name version))
1616 (sha256
1617 (base32 "0g3r8lrw6fsdphgpnp08saxyxk1vd3chpmb564ir2qnsp716vz6z"))))
1618 (build-system dune-build-system)
1619 (arguments
1620 `(#:test-target "."))
1621 (propagated-inputs
1622 (list ocaml-alcotest ocaml-ounit))
1623 (native-inputs
1624 (list ocamlbuild))
1625 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-qcheck))))
1626 (home-page "https://github.com/c-cube/qcheck")
1627 (synopsis "QuickCheck inspired property-based testing for OCaml")
1628 (description "QuickCheck inspired property-based testing for OCaml. This
1629 module checks invariants (properties of some types) over randomly
1630 generated instances of the type. It provides combinators for generating
1631 instances and printing them.")
1632 (license license:lgpl3+)))
1633
1634 (define-public ocaml4.07-qcheck
1635 (package-with-ocaml4.07
1636 (package
1637 (inherit ocaml-qcheck)
1638 (version "0.12")
1639 (source (origin
1640 (method git-fetch)
1641 (uri (git-reference
1642 (url "https://github.com/c-cube/qcheck")
1643 (commit version)))
1644 (file-name (git-file-name "ocaml-qcheck" version))
1645 (sha256
1646 (base32
1647 "1llnfynhlndwyjig7wrayjnds2b3mggp5lw20dwxhn2i2lkkb22m"))))
1648 (properties '()))))
1649
1650 (define-public ocaml-qtest
1651 (package
1652 (name "ocaml-qtest")
1653 (version "2.11.2")
1654 (source (origin
1655 (method git-fetch)
1656 (uri (git-reference
1657 (url "https://github.com/vincent-hugot/qtest/")
1658 (commit (string-append "v" version))))
1659 (file-name (git-file-name name version))
1660 (sha256
1661 (base32
1662 "04ghjshh6104xyglm0db9kv90m62qla5f4bfrlndv6dsvgw3rdjl"))))
1663 (build-system dune-build-system)
1664 (arguments
1665 `(#:test-target "tests"))
1666 (propagated-inputs
1667 `(("ounit" ,ocaml-ounit)
1668 ("qcheck" ,ocaml-qcheck)))
1669 (home-page "https://github.com/vincent-hugot/qtest")
1670 (synopsis "Inline (Unit) Tests for OCaml")
1671 (description "Qtest extracts inline unit tests written using a special
1672 syntax in comments. Those tests are then run using the oUnit framework and the
1673 qcheck library. The possibilities range from trivial tests -- extremely simple
1674 to use -- to sophisticated random generation of test cases.")
1675 (license license:lgpl3+)))
1676
1677 (define-public ocaml-stringext
1678 (package
1679 (name "ocaml-stringext")
1680 (version "1.6.0")
1681 (source (origin
1682 (method git-fetch)
1683 (uri (git-reference
1684 (url "https://github.com/rgrinberg/stringext")
1685 (commit version)))
1686 (file-name (git-file-name name version))
1687 (sha256
1688 (base32
1689 "1m09cmn3vrk3gdm60fb730qsygcfyxsyv7gl9xfzck08q1x2x9qx"))))
1690 (build-system dune-build-system)
1691 (arguments
1692 `(#:test-target "."))
1693 (native-inputs
1694 `(("ocamlbuild" ,ocamlbuild)
1695 ("qtest" ,ocaml-qtest)))
1696 (home-page "https://github.com/rgrinberg/stringext")
1697 (synopsis "Extra string functions for OCaml")
1698 (description "Provides a single module named Stringext that provides a grab
1699 bag of often used but missing string functions from the stdlib. E.g, split,
1700 full_split, cut, rcut, etc..")
1701 ;; the only mention of a license in this project is in its `opam' file
1702 ;; where it says `mit'.
1703 (license license:expat)))
1704
1705 (define dune-bootstrap
1706 (package
1707 (name "dune")
1708 (version "3.3.1")
1709 (source (origin
1710 (method git-fetch)
1711 (uri (git-reference
1712 (url "https://github.com/ocaml/dune")
1713 (commit version)))
1714 (file-name (git-file-name name version))
1715 (sha256
1716 (base32
1717 "0wdja70l7y1cj1d0sijm0q0cbics8xd9wqka7zyb29y1cc57pasa"))))
1718 (build-system ocaml-build-system)
1719 (arguments
1720 `(#:tests? #f; require odoc
1721 #:make-flags ,#~(list "release"
1722 (string-append "PREFIX=" #$output)
1723 (string-append "LIBDIR=" #$output
1724 "/lib/ocaml/site-lib"))
1725 #:phases
1726 (modify-phases %standard-phases
1727 (replace 'configure
1728 (lambda* (#:key outputs #:allow-other-keys)
1729 (mkdir-p "src/dune")
1730 (invoke "./configure")
1731 #t)))))
1732 (home-page "https://github.com/ocaml/dune")
1733 (synopsis "OCaml build system")
1734 (description "Dune is a build system that was designed to simplify the
1735 release of Jane Street packages. It reads metadata from @file{dune} files
1736 following a very simple s-expression syntax.")
1737 (license license:expat)))
1738
1739 (define ocaml4.09-dune-bootstrap
1740 (package-with-ocaml4.09 dune-bootstrap))
1741
1742 (define-public dune-configurator
1743 (package
1744 (inherit dune-bootstrap)
1745 (name "dune-configurator")
1746 (build-system dune-build-system)
1747 (arguments
1748 `(#:package "dune-configurator"
1749 #:dune ,dune-bootstrap
1750 ; require ppx_expect
1751 #:tests? #f
1752 #:phases
1753 (modify-phases %standard-phases
1754 ;; When building dune, these directories are normally removed after
1755 ;; the bootstrap.
1756 (add-before 'build 'remove-vendor
1757 (lambda _
1758 (delete-file-recursively "vendor/csexp")
1759 (delete-file-recursively "vendor/pp"))))))
1760 (propagated-inputs
1761 (list ocaml-csexp))
1762 (properties `((ocaml4.09-variant . ,(delay ocaml4.09-dune-configurator))))
1763 (synopsis "Dune helper library for gathering system configuration")
1764 (description "Dune-configurator is a small library that helps writing
1765 OCaml scripts that test features available on the system, in order to generate
1766 config.h files for instance. Among other things, dune-configurator allows one to:
1767
1768 @itemize
1769 @item test if a C program compiles
1770 @item query pkg-config
1771 @item import #define from OCaml header files
1772 @item generate config.h file
1773 @end itemize")))
1774
1775 (define-public ocaml4.09-dune-configurator
1776 (package
1777 (inherit dune-configurator)
1778 (name "ocaml4.09-dune-configurator")
1779 (arguments
1780 `(,@(package-arguments dune-configurator)
1781 #:dune ,ocaml4.09-dune-bootstrap
1782 #:ocaml ,ocaml-4.09
1783 #:findlib ,ocaml4.09-findlib))
1784 (propagated-inputs
1785 `(("ocaml-csexp" ,ocaml4.09-csexp)))))
1786
1787 (define-public dune
1788 (package
1789 (inherit dune-bootstrap)
1790 (propagated-inputs
1791 (list dune-configurator))
1792 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-dune))
1793 (ocaml4.09-variant . ,(delay ocaml4.09-dune))))))
1794
1795 (define-public ocaml4.09-dune
1796 (package
1797 (inherit ocaml4.09-dune-bootstrap)
1798 (propagated-inputs
1799 (list dune-configurator))))
1800
1801 (define-public ocaml4.07-dune
1802 (package
1803 (inherit (package-with-ocaml4.07 dune-bootstrap))
1804 (version "1.11.3")
1805 (source (origin
1806 (method git-fetch)
1807 (uri (git-reference
1808 (url "https://github.com/ocaml/dune")
1809 (commit version)))
1810 (file-name (git-file-name "dune" version))
1811 (sha256
1812 (base32
1813 "0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr"))))))
1814
1815 (define-public ocaml-csexp
1816 (package
1817 (name "ocaml-csexp")
1818 (version "1.5.1")
1819 (source (origin
1820 (method git-fetch)
1821 (uri (git-reference
1822 (url "https://github.com/ocaml-dune/csexp")
1823 (commit version)))
1824 (file-name (git-file-name name version))
1825 (sha256
1826 (base32
1827 "1v5y4x1a21193h8q536c0s0d8hv3hyyky4pgzm2dw9807v36s2x4"))))
1828 (build-system dune-build-system)
1829 (arguments
1830 `(#:tests? #f; FIXME: needs ppx_expect, but which version?
1831 #:dune ,dune-bootstrap
1832 #:phases
1833 (modify-phases %standard-phases
1834 (add-before 'build 'chmod
1835 (lambda _
1836 (for-each (lambda (file) (chmod file #o644)) (find-files "." ".*"))
1837 #t)))))
1838 (propagated-inputs
1839 (list ocaml-result))
1840 (properties `((ocaml4.09-variant . ,(delay ocaml4.09-csexp))))
1841 (home-page "https://github.com/ocaml-dune/csexp")
1842 (synopsis "Parsing and printing of S-expressions in Canonical form")
1843 (description "This library provides minimal support for Canonical
1844 S-expressions. Canonical S-expressions are a binary encoding of
1845 S-expressions that is super simple and well suited for communication
1846 between programs.
1847
1848 This library only provides a few helpers for simple applications. If
1849 you need more advanced support, such as parsing from more fancy input
1850 sources, you should consider copying the code of this library given
1851 how simple parsing S-expressions in canonical form is.
1852
1853 To avoid a dependency on a particular S-expression library, the only
1854 module of this library is parameterised by the type of S-expressions.")
1855 (license license:expat)))
1856
1857 (define-public ocaml4.09-csexp
1858 (package
1859 (inherit ocaml-csexp)
1860 (name "ocaml4.09-csexp")
1861 (arguments
1862 `(#:ocaml ,ocaml-4.09
1863 #:findlib ,ocaml4.09-findlib
1864 ,@(substitute-keyword-arguments (package-arguments ocaml-csexp)
1865 ((#:dune _) ocaml4.09-dune-bootstrap))))
1866 (propagated-inputs
1867 `(("ocaml-result" ,ocaml4.09-result)))))
1868
1869 (define-public ocaml-migrate-parsetree
1870 (package
1871 (name "ocaml-migrate-parsetree")
1872 (version "2.4.0")
1873 (home-page "https://github.com/ocaml-ppx/ocaml-migrate-parsetree")
1874 (source
1875 (origin
1876 (method git-fetch)
1877 (uri (git-reference
1878 (url home-page)
1879 (commit version)))
1880 (file-name (git-file-name name version))
1881 (sha256
1882 (base32
1883 "0a1qy0ik36j8hpqxvh3fxf4aibjqax989mihj73jncchv8qv4ynq"))))
1884 (build-system dune-build-system)
1885 (arguments `(#:tests? #f))
1886 (propagated-inputs
1887 (list ocaml-ppx-derivers ocamlbuild ocaml-result))
1888 (properties `((upstream-name . "ocaml-migrate-parsetree")
1889 (ocaml4.07-variant . ,(delay ocaml4.07-migrate-parsetree))))
1890 (synopsis "OCaml parsetree converter")
1891 (description "This library converts between parsetrees of different OCaml
1892 versions. For each version, there is a snapshot of the parsetree and conversion
1893 functions to the next and/or previous version.")
1894 (license license:lgpl2.1+)))
1895
1896 ;; OCaml 4.07 packages require version 1.*
1897 (define-public ocaml4.07-migrate-parsetree
1898 (package-with-ocaml4.07
1899 (package
1900 (inherit ocaml-migrate-parsetree)
1901 (name "ocaml-migrate-parsetree")
1902 (version "1.8.0")
1903 (home-page "https://github.com/ocaml-ppx/ocaml-migrate-parsetree")
1904 (source
1905 (origin
1906 (method git-fetch)
1907 (uri (git-reference
1908 (url home-page)
1909 (commit (string-append "v" version))))
1910 (file-name (git-file-name name version))
1911 (sha256
1912 (base32
1913 "16x8sxc4ygxrr1868qpzfqyrvjf3hfxvjzmxmf6ibgglq7ixa2nq"))))
1914 (properties '((upstream-name . "ocaml-migrate-parsetree"))))))
1915
1916 (define-public ocaml4.07-ppx-tools-versioned
1917 (package-with-ocaml4.07
1918 (package
1919 (name "ocaml-ppx-tools-versioned")
1920 (version "5.4.0")
1921 (source (origin
1922 (method git-fetch)
1923 (uri (git-reference
1924 (url "https://github.com/ocaml-ppx/ppx_tools_versioned")
1925 (commit version)))
1926 (file-name (git-file-name name version))
1927 (sha256
1928 (base32
1929 "07lnj4yzwvwyh5fhpp1dxrys4ddih15jhgqjn59pmgxinbnddi66"))))
1930 (build-system dune-build-system)
1931 (arguments
1932 `(#:test-target "."
1933 #:package "ppx_tools_versioned"))
1934 (propagated-inputs
1935 (list ocaml-migrate-parsetree))
1936 (properties `((upstream-name . "ppx_tools_versioned")))
1937 (home-page "https://github.com/let-def/ppx_tools_versioned")
1938 (synopsis "Variant of ppx_tools")
1939 (description "This package is a variant of ppx_tools based on
1940 ocaml-migrate-parsetree")
1941 (license license:expat))))
1942
1943 (define-public ocaml-linenoise
1944 (package
1945 (name "ocaml-linenoise")
1946 (version "1.3.1")
1947 (source (origin
1948 (method git-fetch)
1949 (uri (git-reference
1950 (url "https://github.com/ocaml-community/ocaml-linenoise")
1951 (commit (string-append "v" version))))
1952 (file-name (git-file-name name version))
1953 (sha256
1954 (base32
1955 "0s98695skz1wvrak0rdlh80w3cv6piic1dxqpn9rv1yymbklafg4"))))
1956 (build-system dune-build-system)
1957 (arguments
1958 ;; No tests
1959 `(#:tests? #f))
1960 (propagated-inputs (list ocaml-result ocaml-odoc))
1961 (home-page "https://github.com/ocaml-community/ocaml-linenoise")
1962 (synopsis "Lightweight readline alternative")
1963 (description "This package is a line-reading library for OCaml that aims
1964 to replace readline.")
1965 (license license:bsd-2)))
1966
1967 (define-public ocaml-bitstring
1968 (package
1969 (name "ocaml-bitstring")
1970 (version "4.1.0")
1971 (source (origin
1972 (method git-fetch)
1973 (uri (git-reference
1974 (url "https://github.com/xguerin/bitstring")
1975 (commit (string-append "v" version))))
1976 (file-name (git-file-name name version))
1977 (sha256
1978 (base32
1979 "0mghsl8b2zd2676mh1r9142hymhvzy9cw8kgkjmirxkn56wbf56b"))))
1980 (build-system dune-build-system)
1981 (native-inputs
1982 (list time autoconf automake))
1983 (propagated-inputs
1984 (list ocaml-stdlib-shims))
1985 (arguments
1986 `(#:package "bitstring"
1987 #:tests? #f; Tests fail to build
1988 #:phases
1989 (modify-phases %standard-phases
1990 (add-before 'build 'upgrade
1991 (lambda _
1992 (invoke "dune" "upgrade")
1993 #t)))))
1994 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-bitstring))))
1995 (home-page "https://github.com/xguerin/bitstring")
1996 (synopsis "Bitstrings and bitstring matching for OCaml")
1997 (description "Adds Erlang-style bitstrings and matching over bitstrings as
1998 a syntax extension and library for OCaml. You can use this module to both parse
1999 and generate binary formats, files and protocols. Bitstring handling is added
2000 as primitives to the language, making it exceptionally simple to use and very
2001 powerful.")
2002 (license license:isc)))
2003
2004 (define-public ocaml4.07-bitstring
2005 (package-with-ocaml4.07
2006 (package
2007 (inherit ocaml-bitstring)
2008 (version "3.1.0")
2009 (source (origin
2010 (method url-fetch)
2011 (uri (string-append "https://bitbucket.org/thanatonauts/bitstring/"
2012 "get/v" version ".tar.gz"))
2013 (file-name (string-append "ocaml-bitsring-" version ".tar.gz"))
2014 (sha256
2015 (base32
2016 "15jjk2pq1vx311gl49s5ag6x5y0654x35w75z07g7kr2q334hqps"))))
2017 (propagated-inputs
2018 `(("ocaml-ppx-tools-versioned" ,ocaml4.07-ppx-tools-versioned)))
2019 (properties '()))))
2020
2021 (define-public ocaml-ppx-bitstring
2022 (package
2023 (inherit ocaml-bitstring)
2024 (name "ocaml-ppx-bitstring")
2025 (arguments
2026 `(#:package "ppx_bitstring"
2027 ;; No tests
2028 #:tests? #f))
2029 (propagated-inputs (list ocaml-bitstring ocaml-ppxlib))
2030 (native-inputs (list ocaml-ounit))
2031 (properties `((upstream-name . "ppx_bitstring")))
2032 (synopsis "PPX extension for bitstrings and bitstring matching")
2033 (description
2034 "This package provides a way to write bitstrings and matching over
2035 bitsrings in Erlang style as primitives to the language.")))
2036
2037 (define-public ocaml-result
2038 (package
2039 (name "ocaml-result")
2040 (version "1.5")
2041 (source (origin
2042 (method git-fetch)
2043 (uri (git-reference
2044 (url "https://github.com/janestreet/result")
2045 (commit version)))
2046 (file-name (git-file-name name version))
2047 (sha256
2048 (base32
2049 "166laj8qk7466sdl037c6cjs4ac571hglw4l5qpyll6df07h6a7q"))))
2050 (build-system dune-build-system)
2051 (arguments
2052 `(#:test-target "."
2053 #:dune ,dune-bootstrap))
2054 (properties `((ocaml4.09-variant . ,(delay ocaml4.09-result))))
2055 (home-page "https://github.com/janestreet/result")
2056 (synopsis "Compatibility Result module")
2057 (description "Uses the new result type defined in OCaml >= 4.03 while
2058 staying compatible with older version of OCaml should use the Result module
2059 defined in this library.")
2060 (license license:bsd-3)))
2061
2062 (define-public ocaml4.09-result
2063 (package
2064 (inherit ocaml-result)
2065 (name "ocaml4.09-result")
2066 (arguments
2067 `(#:test-target "."
2068 #:dune ,ocaml4.09-dune-bootstrap
2069 #:ocaml ,ocaml-4.09
2070 #:findlib ,ocaml4.09-findlib))))
2071
2072 (define-public ocaml-topkg
2073 (package
2074 (name "ocaml-topkg")
2075 (version "1.0.5")
2076 (source (origin
2077 (method url-fetch)
2078 (uri (string-append "http://erratique.ch/software/topkg/releases/"
2079 "topkg-" version ".tbz"))
2080 (sha256
2081 (base32
2082 "1iyinmcfqpprk7k4cc51nqgypayprbj4larwcfqw86k5dri84825"))))
2083 (build-system ocaml-build-system)
2084 (native-inputs
2085 (list opam ocamlbuild))
2086 (propagated-inputs
2087 `(("result" ,ocaml-result)))
2088 (arguments
2089 `(#:tests? #f
2090 #:build-flags '("build")
2091 #:phases
2092 (modify-phases %standard-phases
2093 (delete 'configure))))
2094 (home-page "https://erratique.ch/software/topkg")
2095 (synopsis "Transitory OCaml software packager")
2096 (description "Topkg is a packager for distributing OCaml software. It
2097 provides an API to describe the files a package installs in a given build
2098 configuration and to specify information about the package's distribution,
2099 creation and publication procedures.")
2100 (license license:isc)))
2101
2102 (define-public ocaml-rresult
2103 (package
2104 (name "ocaml-rresult")
2105 (version "0.7.0")
2106 (source (origin
2107 (method url-fetch)
2108 (uri (string-append "http://erratique.ch/software/rresult/releases/"
2109 "rresult-" version ".tbz"))
2110 (sha256
2111 (base32
2112 "0h2mjyzhay1p4k7n0mzaa7hlc7875kiy6m1i3r1n03j6hddpzahi"))))
2113 (build-system ocaml-build-system)
2114 (native-inputs
2115 (list opam ocamlbuild))
2116 (propagated-inputs
2117 `(("topkg" ,ocaml-topkg)))
2118 (arguments
2119 `(#:tests? #f
2120 #:build-flags '("build")
2121 #:phases
2122 (modify-phases %standard-phases
2123 (delete 'configure))))
2124 (home-page "https://erratique.ch/software/rresult")
2125 (synopsis "Result value combinators for OCaml")
2126 (description "Handle computation results and errors in an explicit and
2127 declarative manner, without resorting to exceptions. It defines combinators
2128 to operate on the result type available from OCaml 4.03 in the standard
2129 library.")
2130 (license license:isc)))
2131
2132 (define-public ocaml-sqlite3
2133 (package
2134 (name "ocaml-sqlite3")
2135 (version "5.1.0")
2136 (source
2137 (origin
2138 (method git-fetch)
2139 (uri (git-reference
2140 (url "https://github.com/mmottl/sqlite3-ocaml")
2141 (commit version)))
2142 (file-name (git-file-name name version))
2143 (sha256
2144 (base32
2145 "1ksm0a490315sf0yy8lmva5f3bgr0jnllffanyq89431grpj6x15"))))
2146 (build-system dune-build-system)
2147 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-sqlite3))))
2148 (propagated-inputs
2149 (list dune-configurator ocaml-odoc))
2150 (native-inputs
2151 (list ocaml-ppx-inline-test pkg-config sqlite))
2152 (home-page "https://mmottl.github.io/sqlite3-ocaml")
2153 (synopsis "SQLite3 Bindings for OCaml")
2154 (description
2155 "SQLite3-OCaml is an OCaml library with bindings to the SQLite3 client
2156 API. Sqlite3 is a self-contained, serverless, zero-configuration,
2157 transactional SQL database engine with outstanding performance for many use
2158 cases. These bindings are written in a way that enables a friendly
2159 coexistence with the old (version 2) SQLite and its OCaml wrapper
2160 @code{ocaml-sqlite}.")
2161 (license license:expat)))
2162
2163 (define-public ocaml4.07-sqlite3
2164 (package-with-ocaml4.07
2165 (package
2166 (inherit ocaml-sqlite3)
2167 (version "5.0.2")
2168 (source
2169 (origin
2170 (method git-fetch)
2171 (uri (git-reference
2172 (url "https://github.com/mmottl/sqlite3-ocaml")
2173 (commit version)))
2174 (file-name (git-file-name "ocaml-sqlite3" version))
2175 (sha256
2176 (base32
2177 "15mmq7ak5facpfawfrc6hjz211gli7jab52iqdsihfvh790xm55f"))))
2178 (arguments
2179 `(#:phases
2180 (modify-phases %standard-phases
2181 (add-before 'build 'chmod
2182 (lambda _
2183 (for-each (lambda (file) (chmod file #o644)) (find-files "." ".*"))
2184 #t)))))
2185 (propagated-inputs
2186 `(("ocaml-odoc" ,ocaml-odoc)))
2187 (properties '()))))
2188
2189 (define-public ocaml-csv
2190 (package
2191 (name "ocaml-csv")
2192 (version "2.4")
2193 (source
2194 (origin
2195 (method git-fetch)
2196 (uri (git-reference
2197 (url "https://github.com/Chris00/ocaml-csv")
2198 (commit version)))
2199 (file-name (git-file-name name version))
2200 (sha256
2201 (base32
2202 "0y2hlqlmqs7r4y5mfzc5qdv7gdp3wxbwpz458vf7fj4593vg94cf"))))
2203 (build-system dune-build-system)
2204 (arguments
2205 `(#:package "csv"
2206 #:test-target "."))
2207 (home-page "https://github.com/Chris00/ocaml-csv")
2208 (synopsis "Pure OCaml functions to read and write CSV")
2209 (description
2210 "@dfn{Comma separated values} (CSV) is a simple tabular format supported
2211 by all major spreadsheets. This library implements pure OCaml functions to
2212 read and write files in this format as well as some convenience functions to
2213 manipulate such data.")
2214 ;; This is LGPLv2.1 with an exception that allows packages statically-linked
2215 ;; against the library to be released under any terms.
2216 (license license:lgpl2.1)))
2217
2218 (define-public ocaml-mtime
2219 (package
2220 (name "ocaml-mtime")
2221 (version "1.4.0")
2222 (source (origin
2223 (method url-fetch)
2224 (uri (string-append "http://erratique.ch/software/mtime/releases/"
2225 "mtime-" version ".tbz"))
2226 (sha256
2227 (base32
2228 "1xy6lg52n2zynp4p164ym9j0f1b95j5n4bi5y4mbdrry9w99h32m"))))
2229 (build-system ocaml-build-system)
2230 (native-inputs
2231 (list ocamlbuild opam))
2232 (propagated-inputs
2233 `(("topkg" ,ocaml-topkg)))
2234 (arguments
2235 `(#:tests? #f
2236 #:build-flags (list "build")
2237 #:phases
2238 (modify-phases %standard-phases
2239 (delete 'configure))))
2240 (home-page "https://erratique.ch/software/mtime")
2241 (synopsis "Monotonic wall-clock time for OCaml")
2242 (description "Access monotonic wall-clock time. It measures time
2243 spans without being subject to operating system calendar time adjustments.")
2244 (license license:isc)))
2245
2246 (define-public ocaml-calendar
2247 ;; No tags.
2248 ;; Commit from 2019-02-03.
2249 (let ((commit "a447a88ae3c1e9873e32d2a95d3d3e7c5ed4a7da")
2250 (revision "0"))
2251 (package
2252 (name "ocaml-calendar")
2253 ;; Makefile.in says 2.04.
2254 (version (git-version "2.04" revision commit))
2255 (source
2256 (origin
2257 (method git-fetch)
2258 (uri (git-reference
2259 (url "https://github.com/ocaml-community/calendar")
2260 (commit commit)))
2261 (file-name (git-file-name name version))
2262 (sha256
2263 (base32
2264 "09d9gyqm3zkf3z2m9fx87clqihx6brf8rnzm4yq7c8kf1p572hmc"))))
2265 (build-system gnu-build-system)
2266 (arguments
2267 '(#:test-target "tests"
2268 #:phases
2269 (modify-phases %standard-phases
2270 (add-after 'unpack 'make-deterministic
2271 (lambda _
2272 (substitute* "Makefile.in"
2273 (("`date`") "no date for reproducibility"))))
2274 (add-before 'install 'set-environment-variables
2275 (lambda* (#:key outputs #:allow-other-keys)
2276 (let ((out (assoc-ref outputs "out")))
2277 (setenv "OCAMLFIND_DESTDIR"
2278 (string-append out "/lib/ocaml/site-lib"))
2279 (setenv "OCAMLFIND_LDCONF" "ignore")
2280 (mkdir-p (string-append
2281 out "/lib/ocaml/site-lib/calendar"))))))))
2282 (native-inputs
2283 (list autoconf automake))
2284 (propagated-inputs
2285 `(("ocaml" ,ocaml)
2286 ("ocamlfind" ,ocaml-findlib)))
2287 (home-page "https://github.com/ocaml-community/calendar")
2288 (synopsis "OCaml library for handling dates and times")
2289 (description "This package provides types and operations over
2290 dates and times.")
2291 ;; With linking exception.
2292 (license license:lgpl2.1+))))
2293
2294 (define-public ocaml-cmdliner
2295 (package
2296 (name "ocaml-cmdliner")
2297 (version "1.1.1")
2298 (source (origin
2299 (method url-fetch)
2300 (uri (string-append "https://erratique.ch/software/cmdliner/releases/"
2301 "cmdliner-" version ".tbz"))
2302 (sha256
2303 (base32
2304 "1yxm4x34cbi06bfld601ds9drlbnyx0797ym3n6yyh4rlz1qgbm1"))))
2305 (build-system ocaml-build-system)
2306 (inputs
2307 (list ocaml-result))
2308 (native-inputs
2309 (list ocamlbuild))
2310 (arguments
2311 `(#:tests? #f
2312 #:make-flags ,#~(list (string-append "LIBDIR=" #$output
2313 "/lib/ocaml/site-lib/cmdliner"))
2314 #:phases
2315 (modify-phases %standard-phases
2316 (delete 'configure)
2317 (add-before 'build 'fix-source-file-order
2318 (lambda _
2319 (substitute* "build.ml"
2320 (("Sys.readdir dir")
2321 "let a = Sys.readdir dir in Array.sort String.compare a; a"))
2322 #t)))))
2323 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-cmdliner))))
2324 (home-page "https://erratique.ch/software/cmdliner")
2325 (synopsis "Declarative definition of command line interfaces for OCaml")
2326 (description "Cmdliner is a module for the declarative definition of command
2327 line interfaces. It provides a simple and compositional mechanism to convert
2328 command line arguments to OCaml values and pass them to your functions. The
2329 module automatically handles syntax errors, help messages and UNIX man page
2330 generation. It supports programs with single or multiple commands and respects
2331 most of the POSIX and GNU conventions.")
2332 (license license:bsd-3)))
2333
2334 (define-public ocaml4.07-cmdliner
2335 (package-with-ocaml4.07
2336 (package
2337 (inherit ocaml-cmdliner)
2338 (version "1.0.4")
2339 (source (origin
2340 (method url-fetch)
2341 (uri (string-append "https://erratique.ch/software/cmdliner/releases/"
2342 "cmdliner-" version ".tbz"))
2343 (sha256
2344 (base32
2345 "1h04q0zkasd0mw64ggh4y58lgzkhg6yhzy60lab8k8zq9ba96ajw"))))
2346 (properties '()))))
2347
2348 (define-public ocaml-fmt
2349 (package
2350 (name "ocaml-fmt")
2351 (version "0.9.0")
2352 (source
2353 (origin
2354 (method url-fetch)
2355 (uri (string-append "http://erratique.ch/software/fmt/releases/fmt-"
2356 version ".tbz"))
2357 (sha256 (base32
2358 "0q8j2in2473xh7k4hfgnppv9qy77f2ih89yp6yhpbp92ba021yzi"))))
2359 (build-system ocaml-build-system)
2360 (native-inputs
2361 `(("ocamlbuild" ,ocamlbuild)
2362 ("opam" ,opam)
2363 ("topkg" ,ocaml-topkg)))
2364 (propagated-inputs
2365 `(("cmdliner" ,ocaml-cmdliner)
2366 ("ocaml-stdlib-shims" ,ocaml-stdlib-shims)
2367 ("ocaml-uchar" ,ocaml-uchar)))
2368 (arguments `(#:tests? #f
2369 #:build-flags (list "build" "--with-base-unix" "true"
2370 "--with-cmdliner" "true")
2371 #:phases
2372 (modify-phases %standard-phases
2373 (delete 'configure))))
2374 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-fmt))))
2375 (home-page "https://erratique.ch/software/fmt")
2376 (synopsis "OCaml Format pretty-printer combinators")
2377 (description "Fmt exposes combinators to devise Format pretty-printing
2378 functions.")
2379 (license license:isc)))
2380
2381 (define-public ocaml4.07-fmt
2382 (package-with-ocaml4.07
2383 (package
2384 (inherit ocaml-fmt)
2385 (version "0.8.9")
2386 (source (origin
2387 (method url-fetch)
2388 (uri (string-append "http://erratique.ch/software/fmt/releases/fmt-"
2389 version ".tbz"))
2390 (sha256
2391 (base32
2392 "0gkkkj4x678vxdda4xaw2dd44qjacavsvn5nx8gydfwah6pjbkxk"))))
2393 (properties '()))))
2394
2395 (define-public ocaml-astring
2396 (package
2397 (name "ocaml-astring")
2398 (version "0.8.5")
2399 (source
2400 (origin
2401 (method url-fetch)
2402 (uri (string-append "http://erratique.ch/software/astring/releases/astring-"
2403 version ".tbz"))
2404 (sha256 (base32
2405 "1ykhg9gd3iy7zsgyiy2p9b1wkpqg9irw5pvcqs3sphq71iir4ml6"))))
2406 (build-system ocaml-build-system)
2407 (native-inputs
2408 `(("ocamlbuild" ,ocamlbuild)
2409 ("opam" ,opam)
2410 ("topkg" ,ocaml-topkg)))
2411 (arguments
2412 `(#:tests? #f
2413 #:build-flags (list "build")
2414 #:phases
2415 (modify-phases %standard-phases
2416 (delete 'configure))))
2417 (home-page "https://erratique.ch/software/astring")
2418 (synopsis "Alternative String module for OCaml")
2419 (description "Astring exposes an alternative String module for OCaml. This
2420 module balances minimality and expressiveness for basic, index-free, string
2421 processing and provides types and functions for substrings, string sets and
2422 string maps. The String module exposed by Astring has exception safe functions,
2423 removes deprecated and rarely used functions, alters some signatures and names,
2424 adds a few missing functions and fully exploits OCaml's newfound string
2425 immutability.")
2426 (license license:isc)))
2427
2428 (define-public ocaml-alcotest
2429 (package
2430 (name "ocaml-alcotest")
2431 (version "1.5.0")
2432 (source (origin
2433 (method git-fetch)
2434 (uri (git-reference
2435 (url "https://github.com/mirage/alcotest")
2436 (commit version)))
2437 (file-name (git-file-name name version))
2438 (sha256
2439 (base32
2440 "1lgadc7p56677fi5gwl7r9bml4z87rzh50khhqaij7bwp37zrmpi"))))
2441 (build-system dune-build-system)
2442 (arguments
2443 `(#:package "alcotest"
2444 #:test-target "."
2445 #:phases
2446 (modify-phases %standard-phases
2447 (add-after 'unpack 'fix-test-format
2448 (lambda _
2449 ;; cmdliner changed the format and the tests fail
2450 (substitute* "test/e2e/alcotest/failing/unknown_option.expected"
2451 (("`") "'")
2452 (("COMMAND") "[COMMAND]")
2453 (("\\.\\.\\.") "…")))))))
2454 (native-inputs
2455 (list ocamlbuild))
2456 (propagated-inputs
2457 (list ocaml-astring
2458 ocaml-cmdliner
2459 ocaml-fmt
2460 ocaml-re
2461 ocaml-stdlib-shims
2462 ocaml-uuidm
2463 ocaml-uutf))
2464 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-alcotest))))
2465 (home-page "https://github.com/mirage/alcotest")
2466 (synopsis "Lightweight OCaml test framework")
2467 (description "Alcotest exposes simple interface to perform unit tests. It
2468 exposes a simple TESTABLE module type, a check function to assert test
2469 predicates and a run function to perform a list of unit -> unit test callbacks.
2470 Alcotest provides a quiet and colorful output where only faulty runs are fully
2471 displayed at the end of the run (with the full logs ready to inspect), with a
2472 simple (yet expressive) query language to select the tests to run.")
2473 (license license:isc)))
2474
2475 (define-public ocaml4.07-alcotest
2476 (package-with-ocaml4.07
2477 (package
2478 (inherit ocaml-alcotest)
2479 (version "1.0.1")
2480 (source (origin
2481 (method git-fetch)
2482 (uri (git-reference
2483 (url "https://github.com/mirage/alcotest")
2484 (commit version)))
2485 (file-name (git-file-name "ocaml-alcotest" version))
2486 (sha256
2487 (base32
2488 "1frwi185z4aadmaf0vp8xk5227nyg7nmh28ijj5l7ncjr5slvhz8"))))
2489 (arguments
2490 `(#:package "alcotest"
2491 #:test-target "."))
2492 (properties '()))))
2493
2494 (define-public ocaml-ppx-tools
2495 (package
2496 (name "ocaml-ppx-tools")
2497 (version "6.5")
2498 (source
2499 (origin
2500 (method git-fetch)
2501 (uri (git-reference
2502 (url "https://github.com/alainfrisch/ppx_tools")
2503 (commit version)))
2504 (file-name (git-file-name name version))
2505 (sha256
2506 (base32
2507 "0fwibah2hgllrnbdrmfqil5gr5raf6pb5h2zx6zs1h3d4ykvy8k8"))))
2508 (build-system dune-build-system)
2509 (arguments
2510 ;; No tests
2511 `(#:tests? #f))
2512 (native-inputs
2513 (list ocaml-cppo))
2514 (properties `((upstream-name . "ppx_tools")))
2515 (home-page "https://github.com/alainfrisch/ppx_tools")
2516 (synopsis "Tools for authors of ppx rewriters and other syntactic tools")
2517 (description
2518 "Ppx_tools provides tools for authors of ppx rewriters and other
2519 syntactic tools.")
2520 (license license:expat)))
2521
2522 (define-public ocaml-react
2523 (package
2524 (name "ocaml-react")
2525 (version "1.2.2")
2526 (source
2527 (origin
2528 (method url-fetch)
2529 (uri (string-append "http://erratique.ch/software/react/releases/react-"
2530 version ".tbz"))
2531 (sha256 (base32
2532 "16cg4byj8lfbbw96dhh8sks5y9n1c3fshz7f2p8m7wgisqax7bf4"))))
2533 (build-system ocaml-build-system)
2534 (native-inputs
2535 (list ocamlbuild opam ocaml-topkg))
2536 (arguments
2537 `(#:tests? #f
2538 #:build-flags (list "build")
2539 #:phases
2540 (modify-phases %standard-phases
2541 (delete 'configure))))
2542 (home-page "https://erratique.ch/software/react")
2543 (synopsis "Declarative events and signals for OCaml")
2544 (description "React is an OCaml module for functional reactive programming
2545 (FRP). It provides support to program with time varying values: declarative
2546 events and signals. React doesn't define any primitive event or signal, it
2547 lets the client choose the concrete timeline.")
2548 (license license:bsd-3)))
2549
2550 (define-public ocaml-ssl
2551 (package
2552 (name "ocaml-ssl")
2553 (version "0.5.10")
2554 (source
2555 (origin
2556 (method git-fetch)
2557 (uri (git-reference
2558 (url "https://github.com/savonet/ocaml-ssl")
2559 (commit (string-append "v" version))))
2560 (file-name (git-file-name name version))
2561 (sha256 (base32
2562 "1rszqiqayh67xlwd5411k8vib47x9kapdr037z1majd2c14z3kcb"))))
2563 (build-system dune-build-system)
2564 (arguments
2565 `(#:test-target "."))
2566 (native-inputs
2567 (list autoconf automake which))
2568 (propagated-inputs (list openssl))
2569 (home-page "https://github.com/savonet/ocaml-ssl/")
2570 (synopsis "OCaml bindings for OpenSSL")
2571 (description
2572 "OCaml-SSL is a set of bindings for OpenSSL, a library for communicating
2573 through Transport Layer Security (@dfn{TLS}) encrypted connections.")
2574 (license license:lgpl2.1)))
2575
2576 (define-public ocaml-mmap
2577 (package
2578 (name "ocaml-mmap")
2579 (version "1.2.0")
2580 (source (origin
2581 (method git-fetch)
2582 (uri (git-reference
2583 (url "https://github.com/mirage/mmap")
2584 (commit (string-append "v" version))))
2585 (file-name (git-file-name name version))
2586 (sha256
2587 (base32
2588 "1a7w7l682cbksn2zlmz24gb519x7wb65ivr5vndm9x5pi9fw5pfb"))))
2589 (build-system dune-build-system)
2590 (propagated-inputs (list ocaml-bigarray-compat))
2591 (home-page "https://github.com/mirage/mmap")
2592 (synopsis "File mapping for OCaml")
2593 (description "This project provides a @command{Mmap.map_file} function
2594 for mapping files in memory. This function is the same as the
2595 @command{Unix.map_file} function added in OCaml >= 4.06.")
2596 (license (list license:qpl license:lgpl2.0))))
2597
2598 (define-public ocaml-lwt
2599 (package
2600 (name "ocaml-lwt")
2601 (version "5.6.1")
2602 (source
2603 (origin
2604 (method git-fetch)
2605 (uri (git-reference
2606 (url "https://github.com/ocsigen/lwt")
2607 (commit version)))
2608 (file-name (git-file-name name version))
2609 (sha256 (base32
2610 "0cfmhw4nsnwba49p06l9fbnbcq75w9fd3kvrr615ihjc9frlmjsy"))))
2611 (build-system dune-build-system)
2612 (arguments
2613 `(#:package "lwt"))
2614 (native-inputs
2615 (list ocaml-cppo pkg-config))
2616 (inputs
2617 (list glib))
2618 (propagated-inputs
2619 (list ocaml-mmap ocaml-ocplib-endian ocaml-result ocaml-seq libev))
2620 (home-page "https://github.com/ocsigen/lwt")
2621 (synopsis "Cooperative threads and I/O in monadic style")
2622 (description "Lwt provides typed, composable cooperative threads. These
2623 make it easy to run normally-blocking I/O operations concurrently in a single
2624 process. Also, in many cases, Lwt threads can interact without the need for
2625 locks or other synchronization primitives.")
2626 (license license:lgpl2.1)))
2627
2628 (define-public ocaml-luv
2629 (package
2630 (name "ocaml-luv")
2631 (version "0.5.11")
2632 (source (origin
2633 (method url-fetch)
2634 (uri (string-append "https://github.com/aantron/luv/releases/download/"
2635 version "/luv-" version ".tar.gz"))
2636 (sha256
2637 (base32
2638 "0hrsi8n2l31bcwgj847df4chjgqb9lmwkaky8fvvi15k25rz9v6c"))
2639 (modules '((guix build utils)))
2640 (snippet
2641 '(begin
2642 ;; Remove bundled configure and libuv.
2643 (delete-file-recursively "src/c/vendor")
2644 #t))))
2645 (build-system dune-build-system)
2646 (arguments
2647 (list #:phases
2648 #~(modify-phases %standard-phases
2649 (add-before 'build 'use-system-libuv
2650 (lambda _
2651 (setenv "LUV_USE_SYSTEM_LIBUV" "yes")))
2652 (replace 'check
2653 (lambda* (#:key tests? #:allow-other-keys)
2654 (when tests?
2655 (invoke "dune" "runtest" "--no-buffer" "--force")))))))
2656 (inputs (list libuv))
2657 (propagated-inputs (list ocaml-ctypes ocaml-result ocaml-odoc))
2658 (native-inputs (list ocaml-base ocaml-alcotest))
2659 (home-page "https://github.com/aantron/luv")
2660 (synopsis "Binding to libuv: cross-platform asynchronous I/O")
2661 (description
2662 "Luv is a binding to libuv, the cross-platform C library that does
2663 asynchronous I/O in Node.js and runs its main loop. Besides asynchronous I/O,
2664 libuv also supports multiprocessing and multithreading. Multiple event loops
2665 can be run in different threads. libuv also exposes a lot of other
2666 functionality, amounting to a full OS API, and an alternative to the standard
2667 module Unix.")
2668 (license license:expat)))
2669
2670 (define-public ocaml-lwt-react
2671 (package
2672 (inherit ocaml-lwt)
2673 (name "ocaml-lwt-react")
2674 (version "1.2.0")
2675 (source (origin
2676 (method git-fetch)
2677 (uri (git-reference
2678 (url "https://github.com/ocsigen/lwt")
2679 ;; Version from opam
2680 (commit "5.6.0")))
2681 (file-name (git-file-name name version))
2682 (sha256
2683 (base32
2684 "12sglfwdx4anfslj437g7gxchklgzfvba6i4p478kmqr56j2xd0c"))))
2685 (arguments
2686 `(#:package "lwt_react"))
2687 (properties `((upstream-name . "lwt_react")))
2688 (propagated-inputs
2689 (list ocaml-lwt ocaml-react))))
2690
2691 (define-public ocaml-lwt-log
2692 (package
2693 (name "ocaml-lwt-log")
2694 (version "1.1.1")
2695 (source (origin
2696 (method git-fetch)
2697 (uri (git-reference
2698 (url "https://github.com/aantron/lwt_log")
2699 (commit version)))
2700 (file-name (git-file-name name version))
2701 (sha256
2702 (base32
2703 "1n12i1rmn9cjn6p8yr6qn5dwbrwvym7ckr7bla04a1xnq8qlcyj7"))))
2704 (build-system dune-build-system)
2705 (arguments
2706 `(#:tests? #f)); require lwt_ppx
2707 (propagated-inputs
2708 `(("lwt" ,ocaml-lwt)))
2709 (properties `((upstream-name . "lwt_log")))
2710 (home-page "https://github.com/aantron/lwt_log")
2711 (synopsis "Logging library")
2712 (description "This package provides a deprecated logging component for
2713 ocaml lwt.")
2714 (license license:lgpl2.1)))
2715
2716 (define-public ocaml-logs
2717 (package
2718 (name "ocaml-logs")
2719 (version "0.7.0")
2720 (source (origin
2721 (method url-fetch)
2722 (uri (string-append "http://erratique.ch/software/logs/releases/"
2723 "logs-" version ".tbz"))
2724 (sha256
2725 (base32
2726 "1jnmd675wmsmdwyb5mx5b0ac66g4c6gpv5s4mrx2j6pb0wla1x46"))))
2727 (build-system ocaml-build-system)
2728 (arguments
2729 `(#:tests? #f
2730 #:build-flags (list "build" "--with-js_of_ocaml" "false")
2731 #:phases
2732 (modify-phases %standard-phases
2733 (delete 'configure))))
2734 (native-inputs
2735 (list ocamlbuild opam))
2736 (propagated-inputs
2737 `(("fmt" ,ocaml-fmt)
2738 ("lwt" ,ocaml-lwt)
2739 ("mtime" ,ocaml-mtime)
2740 ("result" ,ocaml-result)
2741 ("cmdliner" ,ocaml-cmdliner)
2742 ("topkg" ,ocaml-topkg)))
2743 (home-page "https://erratique.ch/software/logs")
2744 (synopsis "Logging infrastructure for OCaml")
2745 (description "Logs provides a logging infrastructure for OCaml. Logging is
2746 performed on sources whose reporting level can be set independently. Log
2747 message report is decoupled from logging and is handled by a reporter.")
2748 (license license:isc)))
2749
2750 (define-public ocaml-fpath
2751 (package
2752 (name "ocaml-fpath")
2753 (version "0.7.3")
2754 (source (origin
2755 (method url-fetch)
2756 (uri (string-append "http://erratique.ch/software/fpath/releases/"
2757 "fpath-" version ".tbz"))
2758 (sha256
2759 (base32
2760 "03z7mj0sqdz465rc4drj1gr88l9q3nfs374yssvdjdyhjbqqzc0j"))))
2761 (build-system ocaml-build-system)
2762 (arguments
2763 `(#:tests? #f
2764 #:build-flags (list "build")
2765 #:phases
2766 (modify-phases %standard-phases
2767 (delete 'configure))))
2768 (native-inputs
2769 (list ocamlbuild opam))
2770 (propagated-inputs
2771 `(("topkg" ,ocaml-topkg)
2772 ("astring" ,ocaml-astring)))
2773 (home-page "https://erratique.ch/software/fpath")
2774 (synopsis "File system paths for OCaml")
2775 (description "Fpath is an OCaml module for handling file system paths with
2776 POSIX or Windows conventions. Fpath processes paths without accessing the
2777 file system and is independent from any system library.")
2778 (license license:isc)))
2779
2780 (define-public ocaml-bos
2781 (package
2782 (name "ocaml-bos")
2783 (version "0.2.1")
2784 (source (origin
2785 (method url-fetch)
2786 (uri (string-append "http://erratique.ch/software/bos/releases/"
2787 "bos-" version ".tbz"))
2788 (sha256
2789 (base32
2790 "0dwg7lpaq30rvwc5z1gij36fn9xavvpah1bj8ph9gmhhddw2xmnq"))))
2791 (build-system ocaml-build-system)
2792 (arguments
2793 `(#:tests? #f
2794 #:build-flags (list "build")
2795 #:phases
2796 (modify-phases %standard-phases
2797 (delete 'configure))))
2798 (native-inputs
2799 (list ocamlbuild opam))
2800 (propagated-inputs
2801 `(("topkg" ,ocaml-topkg)
2802 ("astring" ,ocaml-astring)
2803 ("fmt" ,ocaml-fmt)
2804 ("fpath" ,ocaml-fpath)
2805 ("logs" ,ocaml-logs)
2806 ("rresult" ,ocaml-rresult)))
2807 (home-page "https://erratique.ch/software/bos")
2808 (synopsis "Basic OS interaction for OCaml")
2809 (description "Bos provides support for basic and robust interaction with
2810 the operating system in OCaml. It has functions to access the process
2811 environment, parse command line arguments, interact with the file system and
2812 run command line programs.")
2813 (license license:isc)))
2814
2815 (define-public ocaml-xml-light
2816 (package
2817 (name "ocaml-xml-light")
2818 (version "2.4")
2819 (source (origin
2820 (method git-fetch)
2821 (uri (git-reference
2822 (url "https://github.com/ncannasse/xml-light")
2823 (commit version)))
2824 (file-name (git-file-name name version))
2825 (sha256
2826 (base32
2827 "089ywjz84y4p5iln94y54vh03b5fm2zrl2dld1398dyrby96dp6s"))))
2828 (build-system ocaml-build-system)
2829 (arguments
2830 (list #:tests? #f ; There are no tests.
2831 #:phases
2832 #~(modify-phases %standard-phases
2833 (add-after 'unpack 'prefix
2834 (lambda _
2835 (substitute* "Makefile"
2836 (("`\\$\\(OCAMLC\\) -where`")
2837 (string-append #$output "/lib/ocaml/site-lib/xml-light")))))
2838 (delete 'configure) ; no configure
2839 (add-before 'install 'mkdir
2840 (lambda _
2841 (mkdir-p (string-append #$output "/lib/ocaml/site-lib/xml-light"))))
2842 (replace 'install
2843 (lambda _
2844 (invoke "make" "install_ocamlfind"))))))
2845 (home-page "https://github.com/ncannasse/xml-light")
2846 (synopsis "Minimal XML parser & printer for OCaml")
2847 (description
2848 "Xml-Light provides functions to parse an XML document into an OCaml data
2849 structure, work with it, and print it back to an XML document. It also
2850 supports DTD parsing and checking, and is entirely written in OCaml, hence it
2851 does not require additional C libraries.")
2852 (license license:lgpl2.1+))) ; with linking exception
2853
2854 (define-public ocaml-xmlm
2855 (package
2856 (name "ocaml-xmlm")
2857 (version "1.4.0")
2858 (source (origin
2859 (method url-fetch)
2860 (uri (string-append "http://erratique.ch/software/xmlm/releases/"
2861 "xmlm-" version ".tbz"))
2862 (sha256
2863 (base32
2864 "1ynrjba3wm3axscvggrfijfgsznmphhxnkffqch67l9xiqjm44h9"))))
2865 (build-system ocaml-build-system)
2866 (arguments
2867 `(#:tests? #f
2868 #:build-flags (list "build")
2869 #:phases
2870 (modify-phases %standard-phases
2871 (delete 'configure))))
2872 (native-inputs
2873 (list ocamlbuild ocaml-topkg opam))
2874 (home-page "https://erratique.ch/software/xmlm")
2875 (synopsis "Streaming XML codec for OCaml")
2876 (description "Xmlm is a streaming codec to decode and encode the XML data
2877 format. It can process XML documents without a complete in-memory
2878 representation of the data.")
2879 (license license:isc)))
2880
2881 (define-public ocaml-gen
2882 (package
2883 (name "ocaml-gen")
2884 (version "1.0")
2885 (source (origin
2886 (method git-fetch)
2887 (uri (git-reference
2888 (url "https://github.com/c-cube/gen")
2889 (commit (string-append "v" version))))
2890 (file-name (git-file-name name version))
2891 (sha256
2892 (base32
2893 "1z5nw5wljvcqp8q07h336bbvf9paynia0jsdh4486hlkbmr1ask1"))))
2894 (build-system dune-build-system)
2895 (arguments
2896 `(#:package "gen"
2897 #:test-target "."))
2898 (propagated-inputs
2899 (list ocaml-odoc ocaml-seq))
2900 (native-inputs
2901 (list ocaml-qtest ocaml-qcheck))
2902 (home-page "https://github.com/c-cube/gen/")
2903 (synopsis "Iterators for OCaml, both restartable and consumable")
2904 (description "Gen implements iterators of OCaml, that are both restartable
2905 and consumable.")
2906 (license license:bsd-2)))
2907
2908 (define-public ocaml-sedlex
2909 (package
2910 (name "ocaml-sedlex")
2911 (version "2.5")
2912 (source (origin
2913 (method git-fetch)
2914 (uri (git-reference
2915 (url "https://github.com/ocaml-community/sedlex")
2916 (commit (string-append "v" version))))
2917 (file-name (git-file-name name version))
2918 (sha256
2919 (base32
2920 "062a5dvrzvb81l3a9phljrhxfw9nlb61q341q0a6xn65hll3z2wy"))))
2921 (build-system dune-build-system)
2922 (arguments
2923 `(#:tests? #f ; no tests
2924 #:package "sedlex"
2925 #:phases
2926 (modify-phases %standard-phases
2927 (add-before 'build 'copy-resources
2928 (lambda* (#:key inputs #:allow-other-keys)
2929 (with-directory-excursion "src/generator/data"
2930 ;; Newer versions of dune emit an error if files it wants to
2931 ;; build already exist. Delete the dune file so dune doesn't
2932 ;; complain.
2933 (delete-file "dune")
2934 (for-each
2935 (lambda (file)
2936 (copy-file (assoc-ref inputs file) file))
2937 '("DerivedCoreProperties.txt" "DerivedGeneralCategory.txt"
2938 "PropList.txt")))
2939 #t))
2940 (add-before 'build 'chmod
2941 (lambda _
2942 (for-each (lambda (file) (chmod file #o644)) (find-files "." ".*"))
2943 #t)))))
2944 (propagated-inputs
2945 (list ocaml-gen ocaml-ppxlib ocaml-uchar))
2946 ;; These three files are needed by src/generator/data/dune, but would be
2947 ;; downloaded using curl at build time.
2948 (inputs
2949 `(("DerivedCoreProperties.txt"
2950 ,(origin
2951 (method url-fetch)
2952 (uri "https://www.unicode.org/Public/12.1.0/ucd/DerivedCoreProperties.txt")
2953 (sha256
2954 (base32
2955 "0s6sn1yr9qmb2i6gf8dir2zpsbjv1frdfzy3i2yjylzvf637msx6"))))
2956 ("DerivedGeneralCategory.txt"
2957 ,(origin
2958 (method url-fetch)
2959 (uri "https://www.unicode.org/Public/12.1.0/ucd/extracted/DerivedGeneralCategory.txt")
2960 (sha256
2961 (base32
2962 "1rifzq9ba6c58dn0lrmcb5l5k4ksx3zsdkira3m5p6h4i2wriy3q"))))
2963 ("PropList.txt"
2964 ,(origin
2965 (method url-fetch)
2966 (uri "https://www.unicode.org/Public/12.1.0/ucd/PropList.txt")
2967 (sha256
2968 (base32
2969 "0gsb1jpj3mnqbjgbavi4l95gl6g4agq58j82km22fdfg63j3w3fk"))))))
2970 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-sedlex))))
2971 (home-page "https://www.cduce.org/download.html#side")
2972 (synopsis "Lexer generator for Unicode and OCaml")
2973 (description "Lexer generator for Unicode and OCaml.")
2974 (license license:expat)))
2975
2976 (define-public ocaml4.07-sedlex
2977 (package-with-ocaml4.07
2978 (package
2979 (inherit ocaml-sedlex)
2980 (name "ocaml-sedlex")
2981 (version "2.1")
2982 (source (origin
2983 (method git-fetch)
2984 (uri (git-reference
2985 (url "https://github.com/ocaml-community/sedlex")
2986 (commit (string-append "v" version))))
2987 (file-name (git-file-name name version))
2988 (sha256
2989 (base32
2990 "05f6qa8x3vhpdz1fcnpqk37fpnyyq13icqsk2gww5idjnh6kng26"))))
2991 (propagated-inputs
2992 `(("ocaml-ppx-tools-versioned" ,ocaml4.07-ppx-tools-versioned)
2993 ,@(package-propagated-inputs ocaml-sedlex)))
2994 (properties '()))))
2995
2996 (define-public ocaml-uchar
2997 (package
2998 (name "ocaml-uchar")
2999 (version "0.0.2")
3000 (source
3001 (origin
3002 (method url-fetch)
3003 (uri (string-append "https://github.com/ocaml/uchar/releases/download/v"
3004 version "/uchar-" version ".tbz"))
3005 (sha256 (base32
3006 "1w2saw7zanf9m9ffvz2lvcxvlm118pws2x1wym526xmydhqpyfa7"))))
3007 (build-system ocaml-build-system)
3008 (arguments
3009 `(#:tests? #f
3010 #:build-flags (list "native=true" "native-dynlink=true")
3011 #:phases
3012 (modify-phases %standard-phases
3013 (delete 'configure))))
3014 (native-inputs
3015 (list ocamlbuild opam))
3016 (home-page "https://github.com/ocaml/uchar")
3017 (synopsis "Compatibility library for OCaml's Uchar module")
3018 (description "The uchar package provides a compatibility library for the
3019 `Uchar` module introduced in OCaml 4.03.")
3020 (license license:lgpl2.1)))
3021
3022 (define-public ocaml-uutf
3023 (package
3024 (name "ocaml-uutf")
3025 (version "1.0.3")
3026 (source (origin
3027 (method url-fetch)
3028 (uri (string-append "http://erratique.ch/software/uutf/releases/"
3029 "uutf-" version ".tbz"))
3030 (sha256
3031 (base32
3032 "0s05r8ggp1g97zq4rnvbxzj22pv8ld0k5wsdw662jw0y7mhsawl7"))))
3033 (build-system ocaml-build-system)
3034 (arguments
3035 `(#:tests? #f
3036 #:build-flags (list "build")
3037 #:phases
3038 (modify-phases %standard-phases
3039 (delete 'configure))))
3040 (native-inputs
3041 `(("ocamlbuild" ,ocamlbuild)
3042 ("opam" ,opam)
3043 ("topkg" ,ocaml-topkg)))
3044 (propagated-inputs
3045 `(("uchar" ,ocaml-uchar)
3046 ("cmdliner" ,ocaml-cmdliner)))
3047 (home-page "https://erratique.ch/software/uutf")
3048 (synopsis "Non-blocking streaming Unicode codec for OCaml")
3049 (description "Uutf is a non-blocking streaming codec to decode and encode
3050 the UTF-8, UTF-16, UTF-16LE and UTF-16BE encoding schemes. It can efficiently
3051 work character by character without blocking on IO. Decoders perform character
3052 position tracking and support newline normalization.
3053
3054 Functions are also provided to fold over the characters of UTF encoded OCaml
3055 string values and to directly encode characters in OCaml Buffer.t values.")
3056 (license license:isc)))
3057
3058 (define-public ocaml-uunf
3059 (package
3060 (name "ocaml-uunf")
3061 (version "14.0.0")
3062 (source
3063 (origin
3064 (method url-fetch)
3065 (uri (string-append "https://erratique.ch/software/uunf/releases/uunf-"
3066 version".tbz"))
3067 (sha256
3068 (base32
3069 "17wv0nm3vvwcbzb1b09akw8jblmigyhbfmh1sy9lkb5756ni94a2"))))
3070 (build-system ocaml-build-system)
3071 (arguments
3072 `(#:build-flags (list "build" "--tests" "true")
3073 #:phases
3074 (modify-phases %standard-phases
3075 (delete 'configure)
3076 (add-before 'check 'check-data
3077 (lambda* (#:key inputs #:allow-other-keys)
3078 (copy-file (assoc-ref inputs "NormalizationTest.txt")
3079 "test/NormalizationTest.txt")
3080 #t)))))
3081 (native-inputs
3082 `(("ocamlbuild" ,ocamlbuild)
3083 ("opam" ,opam)
3084 ("topkg" ,ocaml-topkg)
3085 ;; Test data is otherwise downloaded with curl
3086 ("NormalizationTest.txt"
3087 ,(origin
3088 (method url-fetch)
3089 (uri (string-append "https://www.unicode.org/Public/"
3090 version
3091 "/ucd/NormalizationTest.txt"))
3092 (file-name (string-append "NormalizationTest-" version ".txt"))
3093 (sha256
3094 (base32 "0c93pqdkksf7b7zw8y2w0h9i5kkrsdjmh2cr5clrrhp6mg10rcvw"))))))
3095 (propagated-inputs (list ocaml-uutf))
3096 (home-page "https://erratique.ch/software/uunf")
3097 (synopsis "Unicode text normalization for OCaml")
3098 (description
3099 "Uunf is an OCaml library for normalizing Unicode text. It supports all
3100 Unicode normalization forms. The library is independent from any
3101 IO mechanism or Unicode text data structure and it can process text
3102 without a complete in-memory representation.")
3103 (license license:isc)))
3104
3105 (define-public ocaml-jsonm
3106 (package
3107 (name "ocaml-jsonm")
3108 (version "1.0.1")
3109 (source (origin
3110 (method url-fetch)
3111 (uri (string-append "http://erratique.ch/software/jsonm/releases/"
3112 "jsonm-" version ".tbz"))
3113 (sha256
3114 (base32
3115 "1176dcmxb11fnw49b7yysvkjh0kpzx4s48lmdn5psq9vshp5c29w"))))
3116 (build-system ocaml-build-system)
3117 (arguments
3118 `(#:tests? #f
3119 #:build-flags (list "build")
3120 #:phases
3121 (modify-phases %standard-phases
3122 (delete 'configure))))
3123 (native-inputs
3124 `(("ocamlbuild" ,ocamlbuild)
3125 ("opam" ,opam)
3126 ("topkg" ,ocaml-topkg)))
3127 (propagated-inputs
3128 `(("uutf" ,ocaml-uutf)
3129 ("cmdliner" ,ocaml-cmdliner)))
3130 (home-page "https://erratique.ch/software/jsonm")
3131 (synopsis "Non-blocking streaming JSON codec for OCaml")
3132 (description "Jsonm is a non-blocking streaming codec to decode and encode
3133 the JSON data format. It can process JSON text without blocking on IO and
3134 without a complete in-memory representation of the data.")
3135 (license license:isc)))
3136
3137 (define-public ocaml-ocp-indent
3138 (package
3139 (name "ocaml-ocp-indent")
3140 (version "1.8.2")
3141 (source
3142 (origin
3143 (method git-fetch)
3144 (uri (git-reference
3145 (url "https://github.com/OCamlPro/ocp-indent")
3146 (commit version)))
3147 (file-name (git-file-name name version))
3148 (sha256
3149 (base32
3150 "1dvcl108ir9nqkk4mjm9xhhj4p9dx9bmg8bnms54fizs1x3x8ar3"))))
3151 (build-system dune-build-system)
3152 (arguments
3153 `(#:test-target "tests"))
3154 (propagated-inputs
3155 (list ocaml-cmdliner))
3156 (home-page "https://www.typerex.org/ocp-indent.html")
3157 (synopsis "Tool to indent OCaml programs")
3158 (description
3159 "Ocp-indent is based on an approximate, tolerant OCaml parser
3160 and a simple stack machine. Presets and configuration options are available,
3161 with the possibility to set them project-wide. It supports the most common
3162 syntax extensions, and it is extensible for others.
3163
3164 This package includes:
3165
3166 @itemize
3167 @item An indentor program, callable from the command-line or from within editors,
3168 @item Bindings for popular editors,
3169 @item A library that can be directly used by editor writers, or just for
3170 fault-tolerant and approximate parsing.
3171 @end itemize")
3172 (license license:lgpl2.1)))
3173
3174 (define-public ocaml-ocp-index
3175 (package
3176 (name "ocaml-ocp-index")
3177 (version "1.3.3")
3178 (source
3179 (origin
3180 (method git-fetch)
3181 (uri (git-reference
3182 (url "https://github.com/OCamlPro/ocp-index")
3183 (commit version)))
3184 (file-name (git-file-name name version))
3185 (sha256
3186 (base32
3187 "1gbigw5s2cafkr82n9vkxbb892qfkykj0adj0hrdkrkw8j6rfl0j"))))
3188 (build-system dune-build-system)
3189 (arguments
3190 `(#:package "ocp-index"))
3191 (propagated-inputs
3192 (list ocaml-ocp-indent ocaml-re ocaml-cmdliner))
3193 (native-inputs
3194 (list ocaml-cppo))
3195 (home-page "https://www.typerex.org/ocp-index.html")
3196 (synopsis "Lightweight completion and documentation browsing for OCaml libraries")
3197 (description "This package includes only the @code{ocp-index} library
3198 and command-line tool.")
3199 ;; All files in libs/ are GNU lgpl2.1
3200 ;; For static linking, clause 6 of LGPL is lifted
3201 ;; All other files under GNU gpl3
3202 (license (list license:gpl3+
3203 license:lgpl2.1+))))
3204
3205 (define-public ocaml-ocurl
3206 (package
3207 (name "ocaml-ocurl")
3208 (version "0.9.2")
3209 (source (origin
3210 (method url-fetch)
3211 (uri (string-append "http://ygrek.org.ua/p/release/ocurl/ocurl-"
3212 version ".tar.gz"))
3213 (sha256
3214 (base32
3215 "0qvpsqbq4qbd397n0nlv9cwlqfyjw7gfb5mmq1awvnklr0c9fdg0"))))
3216 (build-system ocaml-build-system)
3217 (arguments
3218 `(#:phases
3219 (modify-phases %standard-phases
3220 (add-before 'configure 'fix-/bin/sh
3221 (lambda* (#:key inputs #:allow-other-keys)
3222 (substitute* "configure"
3223 (("-/bin/sh") (string-append "-" (which "bash")))))))))
3224 (native-inputs
3225 (list pkg-config))
3226 (inputs (list curl))
3227 (home-page "http://ocurl.forge.ocamlcore.org/")
3228 (synopsis "OCaml bindings for libcurl")
3229 (description "Client-side URL transfer library, supporting HTTP and a
3230 multitude of other network protocols (FTP/SMTP/RTSP/etc).")
3231 (license license:isc)))
3232
3233 (define-public ocaml-base64
3234 (package
3235 (name "ocaml-base64")
3236 (version "3.5.0")
3237 (source (origin
3238 (method git-fetch)
3239 (uri (git-reference
3240 (url "https://github.com/mirage/ocaml-base64")
3241 (commit (string-append "v" version))))
3242 (file-name (git-file-name name version))
3243 (sha256
3244 (base32
3245 "068hwdbpl7vx9jjpxdc6a10zqd8xa55j3xx7ga6fnwrlfsbs2pjj"))))
3246 (build-system dune-build-system)
3247 (native-inputs
3248 (list ocaml-alcotest ocaml-bos ocaml-rresult))
3249 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-base64))))
3250 (home-page "https://github.com/mirage/ocaml-base64")
3251 (synopsis "Base64 encoding for OCaml")
3252 (description "Base64 is a group of similar binary-to-text encoding schemes
3253 that represent binary data in an ASCII string format by translating it into a
3254 radix-64 representation. It is specified in RFC 4648.")
3255 (license license:isc)))
3256
3257 (define-public ocaml4.07-base64
3258 (package-with-ocaml4.07
3259 (package
3260 (inherit ocaml-base64)
3261 (version "3.2.0")
3262 (source (origin
3263 (method git-fetch)
3264 (uri (git-reference
3265 (url "https://github.com/mirage/ocaml-base64")
3266 (commit (string-append "v" version))))
3267 (file-name (git-file-name "ocaml-base64" version))
3268 (sha256
3269 (base32
3270 "1ilw3zj0w6cq7i4pvr8m2kv5l5f2y9aldmv72drlwwns013b1gwy"))))
3271 (arguments
3272 ;; Tests are likely incompatible with our recent alcotest
3273 `(#:tests? #f))
3274 (properties '()))))
3275
3276 (define-public ocamlify
3277 (package
3278 (name "ocamlify")
3279 (version "0.0.2")
3280 (source
3281 (origin
3282 (method url-fetch)
3283 (uri (string-append "https://download.ocamlcore.org/ocamlify/ocamlify/"
3284 version "/ocamlify-" version ".tar.gz"))
3285 (sha256
3286 (base32 "1f0fghvlbfryf5h3j4as7vcqrgfjb4c8abl5y0y5h069vs4kp5ii"))))
3287 (build-system ocaml-build-system)
3288 (arguments
3289 `(#:tests? #f; no tests
3290 #:phases
3291 (modify-phases %standard-phases
3292 (delete 'configure)
3293 (replace 'build
3294 ;; This package uses pre-generated setup.ml by oasis, but is
3295 ;; a dependency of oasis. the pre-generated setup.ml is broken
3296 ;; with recent versions of OCaml, so we perform a bootstrap instead.
3297 (lambda _
3298 (substitute* "src/OCamlifyConfig.ml.ab"
3299 (("$pkg_version") ,version))
3300 (rename-file "src/OCamlifyConfig.ml.ab" "src/OCamlifyConfig.ml")
3301 (with-directory-excursion "src"
3302 (invoke "ocamlc" "OCamlifyConfig.ml" "ocamlify.ml" "-o"
3303 "ocamlify"))
3304 #t))
3305 (replace 'install
3306 (lambda* (#:key outputs #:allow-other-keys)
3307 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
3308 (mkdir-p bin)
3309 (install-file "src/ocamlify" bin)
3310 #t))))))
3311 (home-page "https://forge.ocamlcore.org/projects/ocamlify")
3312 (synopsis "Include files in OCaml code")
3313 (description "OCamlify creates OCaml source code by including
3314 whole files into OCaml string or string list. The code generated can be
3315 compiled as a standard OCaml file. It allows embedding external resources as
3316 OCaml code.")
3317 (license license:lgpl2.1+))); with the OCaml static compilation exception
3318
3319 (define-public omake
3320 (package
3321 (name "omake")
3322 (version "0.10.5")
3323 (source (origin
3324 (method url-fetch)
3325 (uri (string-append "http://download.camlcity.org/download/"
3326 "omake-" version ".tar.gz"))
3327 (sha256
3328 (base32
3329 "1i7pcv53kqplrbdx9mllrhbv4j57zf87xwq18r16cvn1lbc6mqal"))
3330 (patches (search-patches "omake-fix-non-determinism.patch"))))
3331 (build-system ocaml-build-system)
3332 (arguments
3333 `(#:make-flags
3334 ,#~(list (string-append "PREFIX=" #$output))
3335 #:tests? #f ; no test target
3336 #:phases
3337 (modify-phases %standard-phases
3338 (add-before 'configure 'fix-makefile
3339 (lambda* (#:key outputs #:allow-other-keys)
3340 (substitute* "mk/osconfig_unix.mk"
3341 (("CC = cc") "CC = gcc")))))))
3342 (native-inputs (list hevea))
3343 (home-page "http://projects.camlcity.org/projects/omake.html")
3344 (synopsis "Build system designed for scalability and portability")
3345 (description "Similar to make utilities you may have used, but it features
3346 many additional enhancements, including:
3347
3348 @enumerate
3349 @item Support for projects spanning several directories or directory hierarchies.
3350 @item Fast, reliable, automated, scriptable dependency analysis using MD5 digests,
3351 with full support for incremental builds.
3352 @item Dependency analysis takes the command lines into account — whenever the
3353 command line used to build a target changes, the target is considered
3354 out-of-date.
3355 @item Fully scriptable, includes a library that providing support for standard
3356 tasks in C, C++, OCaml, and LaTeX projects, or a mixture thereof.
3357 @end enumerate")
3358 (license (list license:lgpl2.1 ; libmojave
3359 license:expat ; OMake scripts
3360 license:gpl2)))) ; OMake itself, with ocaml linking exception
3361 ; see LICENSE.OMake
3362
3363 (define-public ocaml-benchmark
3364 (package
3365 (name "ocaml-benchmark")
3366 (version "1.6")
3367 (source
3368 (origin
3369 (method git-fetch)
3370 (uri (git-reference
3371 (url "https://github.com/Chris00/ocaml-benchmark")
3372 (commit version)))
3373 (file-name (git-file-name name version))
3374 (sha256
3375 (base32 "0d0vdfjgjzf1y6wkd714d8b0piv1z9qav5ahsapynqzk4b4ahhnp"))))
3376 (build-system dune-build-system)
3377 (arguments `(#:test-target "tests"))
3378 (home-page "https://github.com/Chris00/ocaml-benchmark")
3379 (synopsis "Benchmark running times of code")
3380 (description
3381 "This module provides a set of tools to measure the running times of
3382 your functions and to easily compare the results. A statistical test
3383 is used to determine whether the results truly differ.")
3384 (license license:lgpl3+)))
3385
3386 (define-public ocaml-batteries
3387 (package
3388 (name "ocaml-batteries")
3389 (version "3.5.1")
3390 (source (origin
3391 (method git-fetch)
3392 (uri (git-reference
3393 (url "https://github.com/ocaml-batteries-team/batteries-included")
3394 (commit (string-append "v" version))))
3395 (file-name (git-file-name name version))
3396 (sha256
3397 (base32
3398 "07387jp93civ9p1q2ixmq8qkzzyssp94ssxd4w2ndvkg1nr6kfcl"))))
3399 (build-system ocaml-build-system)
3400 (propagated-inputs (list ocaml-num))
3401 (native-inputs
3402 (list ocamlbuild ocaml-benchmark ocaml-qcheck ocaml-qtest))
3403 (arguments
3404 `(#:phases
3405 (modify-phases %standard-phases
3406 (add-after 'unpack 'make-writable
3407 (lambda _
3408 (for-each make-file-writable (find-files "." "."))))
3409 (add-before 'build 'fix-nondeterminism
3410 (lambda _
3411 (substitute* "setup.ml"
3412 (("Sys.readdir dirname")
3413 "let a = Sys.readdir dirname in Array.sort String.compare a; a"))
3414 #t)))))
3415 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-batteries))))
3416 (home-page "http://batteries.forge.ocamlcore.org/")
3417 (synopsis "Development platform for the OCaml programming language")
3418 (description "Define a standard set of libraries which may be expected on
3419 every compliant installation of OCaml and organize these libraries into a
3420 hierarchy of modules.")
3421 (license license:lgpl2.1+)))
3422
3423 (define-public ocaml4.07-batteries
3424 (package-with-ocaml4.07
3425 (package
3426 (inherit ocaml-batteries)
3427 (version "2.10.0")
3428 (source (origin
3429 (method git-fetch)
3430 (uri (git-reference
3431 (url "https://github.com/ocaml-batteries-team/batteries-included")
3432 (commit (string-append "v" version))))
3433 (file-name (git-file-name "ocaml-batteries" version))
3434 (sha256
3435 (base32
3436 "02fxa1nkp7rpiwfp04n0sagdp9lad4dh9bvljp95xfshm1cx7y4q"))))
3437 (arguments
3438 `(#:phases
3439 (modify-phases %standard-phases
3440 (delete 'check) ; tests are run by the build phase
3441 (add-before 'build 'fix-nondeterminism
3442 (lambda _
3443 (substitute* "setup.ml"
3444 (("Sys.readdir dirname")
3445 "let a = Sys.readdir dirname in Array.sort String.compare a; a"))
3446 #t))
3447 (replace 'build
3448 (lambda* (#:key inputs outputs #:allow-other-keys)
3449 (let ((files
3450 (map (lambda (str)
3451 (substring str 0 (- (string-length str) 1)))
3452 (append
3453 (find-files "src" ".*.mliv")
3454 (find-files "src" ".*.mlv")
3455 (find-files "src" ".*.mlp")))))
3456 (apply invoke "ocamlbuild" "-no-links" "-use-ocamlfind" "-I" "num"
3457 "-lflag" "-dllpath-all" files)
3458 (for-each (lambda (file)
3459 (copy-file (string-append "_build/" file) file))
3460 files))
3461 (invoke "ocamlbuild" "-no-links" "-use-ocamlfind" "-I" "num"
3462 "-lflag" "-dllpath-all" "build/mkconf.byte")
3463 (copy-file "_build/build/mkconf.byte" "build/mkconf.byte")
3464 (invoke "make" "all")
3465 #t)))))
3466 (native-inputs
3467 `(("ocamlbuild" ,ocamlbuild)
3468 ("qtest" ,ocaml-qtest)))
3469 (properties '()))))
3470
3471 (define-public ocaml-pcre
3472 (package
3473 (name "ocaml-pcre")
3474 (version "7.5.0")
3475 (source
3476 (origin
3477 (method git-fetch)
3478 (uri (git-reference
3479 (url "https://github.com/mmottl/pcre-ocaml")
3480 (commit version)))
3481 (file-name (git-file-name name version))
3482 (sha256
3483 (base32
3484 "048k1rl17fcml000yh8fnghk1a06h14lbyrnk9nbigxsymrz6cq2"))))
3485 (build-system dune-build-system)
3486 (arguments
3487 ;; No tests.
3488 '(#:tests? #f))
3489 (propagated-inputs
3490 (list dune-configurator pcre))
3491 (native-inputs
3492 `(("pcre:bin" ,pcre "bin")))
3493 (home-page "https://mmottl.github.io/pcre-ocaml")
3494 (synopsis
3495 "Bindings to the Perl Compatibility Regular Expressions library")
3496 (description "Pcre-ocaml offers library functions for string
3497 pattern matching and substitution, similar to the functionality
3498 offered by the Perl language.")
3499 ;; With static linking exception
3500 (license license:lgpl2.1+)))
3501
3502 (define-public ocaml-expect
3503 (package
3504 (name "ocaml-expect")
3505 (version "0.0.6")
3506 (source (origin
3507 (method url-fetch)
3508 (uri (ocaml-forge-uri name version 1736))
3509 (sha256
3510 (base32
3511 "098qvg9d4yrqzr5ax291y3whrpax0m3sx4gi6is0mblc96r9yqk0"))))
3512 (arguments
3513 `(#:tests? #f))
3514 (build-system ocaml-build-system)
3515 (native-inputs
3516 `(("ocamlbuild" ,ocamlbuild)
3517 ("ocaml-num" ,ocaml-num)
3518 ("ocaml-pcre" ,ocaml-pcre)
3519 ("ounit" ,ocaml-ounit)))
3520 (propagated-inputs
3521 `(("batteries" ,ocaml-batteries)))
3522 (home-page "https://forge.ocamlcore.org/projects/ocaml-expect/")
3523 (synopsis "Simple implementation of expect")
3524 (description "This package provides utilities for building unitary testing
3525 of interactive program. You can match the question using a regular expression
3526 or a timeout.")
3527 (license license:lgpl2.1+))) ; with the OCaml static compilation exception
3528
3529 (define-public ocaml-stdlib-shims
3530 (package
3531 (name "ocaml-stdlib-shims")
3532 (version "0.3.0")
3533 (source (origin
3534 (method git-fetch)
3535 (uri (git-reference
3536 (url "https://github.com/ocaml/stdlib-shims")
3537 (commit version)))
3538 (file-name (git-file-name name version))
3539 (sha256
3540 (base32
3541 "0gmg8w67j3ww17llk7hl4dx0vq7p50rn5s4ib9sy984k543rz59h"))))
3542 (build-system dune-build-system)
3543 (home-page "https://github.com/ocaml/stdlib-shims")
3544 (synopsis "OCaml stdlib features backport to older OCaml compilers")
3545 (description "This package backports some of the new stdlib features to
3546 older compilers, such as the Stdlib module. This allows projects that require
3547 compatibility with older compiler to use these new features in their code.")
3548 ;; with ocaml-linking exception
3549 (license license:lgpl2.1+)))
3550
3551 (define-public ocaml-fileutils
3552 (package
3553 (name "ocaml-fileutils")
3554 (version "0.6.3")
3555 (source (origin
3556 (method git-fetch)
3557 (uri (git-reference
3558 (url "https://github.com/gildor478/ocaml-fileutils")
3559 (commit (string-append "v" version))))
3560 (file-name (git-file-name name version))
3561 (sha256
3562 (base32
3563 "0aa7p5qymi8p7iqym42yk2akjd1ff81fvaks82nhjc533zl01pnf"))))
3564 (build-system dune-build-system)
3565 (propagated-inputs
3566 (list ocaml-stdlib-shims))
3567 (native-inputs
3568 (list ocaml-ounit))
3569 (home-page "http://ocaml-fileutils.forge.ocamlcore.org")
3570 (synopsis "Pure OCaml functions to manipulate real file and filename")
3571 (description "Library to provide pure OCaml functions to manipulate real
3572 file (POSIX like) and filename.")
3573 (license license:lgpl2.1+))) ; with the OCaml static compilation exception
3574
3575 (define-public ocaml-oasis
3576 (package
3577 (name "ocaml-oasis")
3578 (version "0.4.11")
3579 (source (origin
3580 (method url-fetch)
3581 (uri (ocaml-forge-uri name version 1757))
3582 (sha256
3583 (base32
3584 "0bn13mzfa98dq3y0jwzzndl55mnywaxv693z6f1rlvpdykp3vdqq"))
3585 (modules '((guix build utils)))
3586 (snippet
3587 '(begin
3588 (substitute* "test/test-main/Test.ml"
3589 ;; most of these tests fail because ld cannot find crti.o, but according
3590 ;; to the log file, the environment variables {LD_,}LIBRARY_PATH
3591 ;; are set correctly when LD_LIBRARY_PATH is defined beforhand.
3592 (("TestBaseCompat.tests;") "")
3593 (("TestExamples.tests;") "")
3594 (("TestFull.tests;") "")
3595 (("TestPluginDevFiles.tests;") "")
3596 (("TestPluginInternal.tests;") "")
3597 (("TestPluginOCamlbuild.tests;") "")
3598 (("TestPluginOMake.tests;") ""))
3599 #t))))
3600 (build-system ocaml-build-system)
3601 (arguments
3602 `(#:tests? #f))
3603 (native-inputs
3604 (list ocamlbuild ocamlify ocamlmod))
3605 (home-page "https://oasis.forge.ocamlcore.org")
3606 (synopsis "Integrates a configure, build, install system in OCaml projects")
3607 (description "OASIS is a tool to integrate a configure, build and install
3608 system in your OCaml projects. It helps to create standard entry points in your
3609 build system and allows external tools to analyse your project easily.")
3610 (license license:lgpl2.1+))) ; with ocaml static compilation exception
3611
3612 (define-public ocaml-cppo
3613 (package
3614 (name "ocaml-cppo")
3615 (version "1.6.9")
3616 (source
3617 (origin
3618 (method git-fetch)
3619 (uri (git-reference
3620 (url "https://github.com/mjambon/cppo")
3621 (commit (string-append "v" version))))
3622 (file-name (git-file-name name version))
3623 (sha256 (base32
3624 "1c8jlr2s0allw1h6czz5q24vn5jsnrrh44j7hjyilzaifm17dlrm"))))
3625 (build-system dune-build-system)
3626 (arguments
3627 `(#:tests? #f))
3628 (native-inputs
3629 (list ocamlbuild))
3630 (home-page "https://github.com/mjambon/cppo")
3631 (synopsis "Equivalent of the C preprocessor for OCaml programs")
3632 (description "Cppo is an equivalent of the C preprocessor for OCaml
3633 programs. It allows the definition of simple macros and file inclusion. Cppo is:
3634 @enumerate
3635 @item more OCaml-friendly than @command{cpp}
3636 @item easy to learn without consulting a manual
3637 @item reasonably fast
3638 @item simple to install and to maintain.
3639 @end enumerate")
3640 (license license:bsd-3)))
3641
3642 (define-public ocaml-seq
3643 (package
3644 (name "ocaml-seq")
3645 (version "0.1")
3646 (source
3647 (origin
3648 (method git-fetch)
3649 (uri (git-reference
3650 (url "https://github.com/c-cube/seq")
3651 (commit version)))
3652 (file-name (git-file-name name version))
3653 (sha256
3654 (base32 "1cjpsc7q76yfgq9iyvswxgic4kfq2vcqdlmxjdjgd4lx87zvcwrv"))))
3655 (build-system ocaml-build-system)
3656 (arguments
3657 `(#:tests? #f
3658 #:phases
3659 (modify-phases %standard-phases
3660 (delete 'configure)
3661 (delete 'build)
3662 (replace 'install
3663 (lambda* (#:key outputs #:allow-other-keys)
3664 (let ((install-dir (string-append (assoc-ref outputs "out")
3665 "/lib/ocaml/site-lib/seq")))
3666 (mkdir-p install-dir)
3667 (with-output-to-file (string-append install-dir "/META")
3668 (lambda _
3669 (display "name=\"seq\"
3670 version=\"[distributed with ocaml]\"
3671 description=\"dummy package for compatibility\"
3672 requires=\"\"")))
3673 #t))))))
3674 (home-page "https://github.com/c-cube/seq")
3675 (synopsis "OCaml's standard iterator type")
3676 (description "This package is a compatibility package for OCaml's
3677 standard iterator type starting from 4.07.")
3678 (license license:lgpl2.1+)))
3679
3680 (define-public ocaml-re
3681 (package
3682 (name "ocaml-re")
3683 (version "1.10.4")
3684 (source
3685 (origin
3686 (method git-fetch)
3687 (uri (git-reference
3688 (url "https://github.com/ocaml/ocaml-re")
3689 (commit version)))
3690 (file-name (git-file-name name version))
3691 (sha256
3692 (base32 "1g0vmpx6ylv8m0w77zarn215pgb4czc6gcpb2fi5da1s307zwr0w"))))
3693 (build-system dune-build-system)
3694 (arguments
3695 `(#:test-target "."))
3696 (propagated-inputs
3697 (list ocaml-seq))
3698 (native-inputs
3699 `(("ounit" ,ocaml-ounit)))
3700 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-re))))
3701 (home-page "https://github.com/ocaml/ocaml-re/")
3702 (synopsis "Regular expression library for OCaml")
3703 (description "Pure OCaml regular expressions with:
3704 @enumerate
3705 @item Perl-style regular expressions (module Re_perl)
3706 @item Posix extended regular expressions (module Re_posix)
3707 @item Emacs-style regular expressions (module Re_emacs)
3708 @item Shell-style file globbing (module Re_glob)
3709 @item Compatibility layer for OCaml's built-in Str module (module Re_str)
3710 @end enumerate")
3711 (license license:expat)))
3712
3713 (define-public ocaml4.07-re
3714 (package-with-ocaml4.07
3715 (package
3716 (inherit ocaml-re)
3717 (arguments
3718 `(#:test-target "."
3719 #:phases
3720 (modify-phases %standard-phases
3721 (add-after 'unpack 'fix-dune-version
3722 (lambda _
3723 (delete-file "dune-project"))))))
3724 (properties '()))))
3725
3726 (define-public ocaml-ocplib-endian
3727 (package
3728 (name "ocaml-ocplib-endian")
3729 (version "1.2")
3730 (source (origin
3731 (method git-fetch)
3732 (uri (git-reference
3733 (url "https://github.com/OCamlPro/ocplib-endian/")
3734 (commit version)))
3735 (sha256
3736 (base32
3737 "1klj4g451s7m5r8bxmwc1rpvngpqdm40csnx9smgc06pwy2fax2c"))
3738 (file-name (git-file-name name version))))
3739 (build-system dune-build-system)
3740 (arguments
3741 `(#:test-target "tests"))
3742 (native-inputs
3743 `(("cppo" ,ocaml-cppo)))
3744 (home-page "https://github.com/OCamlPro/ocplib-endian")
3745 (synopsis "Optimised functions to read and write int16/32/64 from strings
3746 and bigarrays")
3747 (description "Optimised functions to read and write int16/32/64 from strings
3748 and bigarrays, based on new primitives added in version 4.01. It works on
3749 strings, bytes and bigstring (Bigarrys of chars), and provides submodules for
3750 big- and little-endian, with their unsafe counter-parts.")
3751 (license license:lgpl2.1)))
3752
3753 (define-public ocaml-cstruct
3754 (package
3755 (name "ocaml-cstruct")
3756 (version "6.1.0")
3757 (source (origin
3758 (method git-fetch)
3759 (uri (git-reference
3760 (url "https://github.com/mirage/ocaml-cstruct")
3761 (commit (string-append "v" version))))
3762 (file-name (git-file-name name version))
3763 (sha256
3764 (base32
3765 "1pwfkfs8zzr88slnvl5b28lx6w2k149ybgvrs6diay3qvwcmkhx5"))))
3766 (build-system dune-build-system)
3767 (arguments
3768 `(#:package "cstruct"
3769 #:test-target "."))
3770 (propagated-inputs
3771 (list ocaml-bigarray-compat))
3772 (native-inputs
3773 (list ocaml-alcotest))
3774 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-cstruct))))
3775 (home-page "https://github.com/mirage/ocaml-cstruct")
3776 (synopsis "Access C structures via a camlp4 extension")
3777 (description "Cstruct is a library and syntax extension to make it easier
3778 to access C-like structures directly from OCaml. It supports both reading and
3779 writing to these structures, and they are accessed via the Bigarray module.")
3780 (license license:isc)))
3781
3782 (define-public ocaml4.07-cstruct
3783 (package-with-ocaml4.07
3784 (package
3785 (inherit ocaml-cstruct)
3786 (version "5.1.1")
3787 (source (origin
3788 (method git-fetch)
3789 (uri (git-reference
3790 (url "https://github.com/mirage/ocaml-cstruct")
3791 (commit (string-append "v" version))))
3792 (file-name (git-file-name "ocaml-cstruct" version))
3793 (sha256
3794 (base32
3795 "0jj3whs8r3jc524i9bb67rffh7y7r157hjgvws0bkxijxpjzwkbk"))))
3796 (properties '()))))
3797
3798 (define-public ocaml-hex
3799 (package
3800 (name "ocaml-hex")
3801 (version "1.5.0")
3802 (source (origin
3803 (method git-fetch)
3804 (uri (git-reference
3805 (url "https://github.com/mirage/ocaml-hex")
3806 (commit (string-append "v" version))))
3807 (file-name (git-file-name name version))
3808 (sha256
3809 (base32
3810 "0xnl5wxd2qrba7phm3mdrjwd2kk26kb17dv94ciwp49ljcj28qc1"))))
3811 (build-system dune-build-system)
3812 (arguments
3813 `(#:test-target "."))
3814 (propagated-inputs
3815 `(("ocaml-bigarray-compat" ,ocaml-bigarray-compat)
3816 ("cstruct" ,ocaml-cstruct)))
3817 (home-page "https://github.com/mirage/ocaml-hex/")
3818 (synopsis "Minimal library providing hexadecimal converters")
3819 (description "Hex is a minimal library providing hexadecimal converters.")
3820 (license license:isc)))
3821
3822 (define-public ocaml-ezjsonm
3823 (package
3824 (name "ocaml-ezjsonm")
3825 (version "1.3.0")
3826 (source
3827 (origin
3828 (method git-fetch)
3829 (uri (git-reference
3830 (url "https://github.com/mirage/ezjsonm")
3831 (commit (string-append "v" version))))
3832 (file-name (git-file-name name version))
3833 (sha256
3834 (base32 "004knljxqxn9zq0rnq7q7wxl4nwlzydm8p9f5cqkl8il5yl5zkjm"))))
3835 (build-system dune-build-system)
3836 (arguments
3837 `(#:package "ezjsonm"
3838 #:test-target "."))
3839 (native-inputs (list ocaml-alcotest js-of-ocaml node))
3840 (propagated-inputs (list ocaml-jsonm ocaml-uutf ocaml-sexplib0 ocaml-hex))
3841 (home-page "https://github.com/mirage/ezjsonm/")
3842 (synopsis "Read and write JSON data")
3843 (description "Ezjsonm provides more convenient (but far less flexible) input
3844 and output functions that go to and from [string] values than jsonm. This avoids
3845 the need to write signal code, which is useful for quick scripts that manipulate
3846 JSON.")
3847 (license license:isc)))
3848
3849 (define-public ocaml-uri
3850 (package
3851 (name "ocaml-uri")
3852 (version "4.2.0")
3853 (home-page "https://github.com/mirage/ocaml-uri")
3854 (source
3855 (origin
3856 (method git-fetch)
3857 (uri (git-reference
3858 (url home-page)
3859 (commit (string-append "v" version))))
3860 (file-name (git-file-name name version))
3861 (sha256
3862 (base32
3863 "1bgkc66cq00mgnkz3i535srwzwc4cpdsv0mly5dzvvq33451xwf0"))))
3864 (build-system dune-build-system)
3865 (arguments '(#:package "uri"
3866 #:test-target "."))
3867 (propagated-inputs
3868 (list ocaml-stringext ocaml-angstrom))
3869 (native-inputs
3870 (list ocaml-ounit ocaml-ppx-sexp-conv))
3871 (properties `((upstream-name . "uri")
3872 (ocaml4.07-variant ,(delay ocaml4.07-uri))))
3873 (synopsis "RFC3986 URI/URL parsing library")
3874 (description "OCaml-uri is a library for parsing URI/URL in the RFC3986 format.")
3875 (license license:isc)))
3876
3877 (define-public ocaml4.07-uri
3878 (package
3879 (name "ocaml4.07-uri")
3880 (version "2.2.0")
3881 (source
3882 (origin
3883 (method git-fetch)
3884 (uri (git-reference
3885 (url "https://github.com/mirage/ocaml-uri")
3886 (commit (string-append "v" version))))
3887 (file-name (git-file-name name version))
3888 (sha256
3889 (base32 "1ppbav41mszpjcl0zi3fyg958cxyfs57i7kvha4ds9ydn89bjmrh"))))
3890 (build-system dune-build-system)
3891 (arguments
3892 `(#:test-target "."
3893 #:phases
3894 (modify-phases %standard-phases
3895 (add-before 'build 'update-deprecated
3896 (lambda _
3897 (substitute* "lib/uri.ml"
3898 (("Re.get") "Re.Group.get")))))
3899 #:ocaml ,ocaml-4.07
3900 #:findlib ,ocaml4.07-findlib
3901 #:dune ,ocaml4.07-dune))
3902 (native-inputs
3903 `(("ocaml-ounit" ,(package-with-ocaml4.07 ocaml-ounit))
3904 ("ocaml-ppx-sexp-conv" ,(package-with-ocaml4.07 ocaml-ppx-sexp-conv))))
3905 (propagated-inputs
3906 `(("ocaml-re" ,(package-with-ocaml4.07 ocaml-re))
3907 ("ocaml-sexplib0" ,(package-with-ocaml4.07 ocaml-sexplib0))
3908 ("ocaml-stringext" ,(package-with-ocaml4.07 ocaml-stringext))))
3909 (properties `((upstream-name . "uri")))
3910 (home-page "https://github.com/mirage/ocaml-uri")
3911 (synopsis "RFC3986 URI/URL parsing library")
3912 (description "OCaml-uri is a library for parsing URI/URL in the RFC3986 format.")
3913 (license license:isc)))
3914
3915 (define-public ocaml-easy-format
3916 (package
3917 (name "ocaml-easy-format")
3918 (version "1.3.4")
3919 (source (origin
3920 (method git-fetch)
3921 (uri (git-reference
3922 (url "https://github.com/mjambon/easy-format")
3923 (commit version)))
3924 (file-name (git-file-name name version))
3925 (sha256
3926 (base32
3927 "0xap6az4yyb60vb1jfs640wl3cf4njv78p538x9ihhf9f6ij3nh8"))))
3928 (build-system dune-build-system)
3929 (arguments
3930 `(#:package "easy-format"
3931 #:phases
3932 (modify-phases %standard-phases
3933 (add-before 'build 'make-writable
3934 (lambda _
3935 (for-each
3936 (lambda (file)
3937 (chmod file #o644))
3938 (find-files "." "."))
3939 #t)))))
3940 (home-page "https://github.com/mjambon/easy-format")
3941 (synopsis "Interface to the Format module")
3942 (description "Easy-format is a high-level and functional interface to the
3943 Format module of the OCaml standard library.")
3944 (license license:bsd-3)))
3945
3946 (define-public ocaml-piqilib
3947 (package
3948 (name "ocaml-piqilib")
3949 (version "0.6.15")
3950 (source
3951 (origin
3952 (method git-fetch)
3953 (uri (git-reference
3954 (url "https://github.com/alavrik/piqi")
3955 (commit (string-append "v" version))))
3956 (file-name (git-file-name name version))
3957 (sha256
3958 (base32 "0v04hs85xv6d4ysqxyv1dik34dx49yab9shpi4x7iv19qlzl7csb"))))
3959 (build-system ocaml-build-system)
3960 (arguments
3961 `(#:phases
3962 (modify-phases %standard-phases
3963 (add-before 'configure 'fix-ocamlpath
3964 (lambda _
3965 (substitute* '("Makefile" "make/Makefile.ocaml")
3966 (("OCAMLPATH := ") "OCAMLPATH := $(OCAMLPATH):"))))
3967 (replace 'configure
3968 (lambda* (#:key outputs #:allow-other-keys)
3969 (let ((out (assoc-ref outputs "out")))
3970 (substitute* "make/OCamlMakefile"
3971 (("/bin/sh") (which "bash")))
3972 (invoke "./configure" "--prefix" out "--ocaml-libdir"
3973 (string-append out "/lib/ocaml/site-lib")))))
3974 (add-after 'build 'build-ocaml
3975 (lambda* (#:key outputs #:allow-other-keys)
3976 (invoke "make" "ocaml")))
3977 (add-after 'install 'install-ocaml
3978 (lambda* (#:key outputs #:allow-other-keys)
3979 (invoke "make" "ocaml-install")))
3980 (add-after 'install-ocaml 'link-stubs
3981 (lambda* (#:key outputs #:allow-other-keys)
3982 (let* ((out (assoc-ref outputs "out"))
3983 (stubs (string-append out "/lib/ocaml/site-lib/stubslibs"))
3984 (lib (string-append out "/lib/ocaml/site-lib/piqilib")))
3985 (mkdir-p stubs)
3986 (symlink (string-append lib "/dllpiqilib_stubs.so")
3987 (string-append stubs "/dllpiqilib_stubs.so"))))))))
3988 (native-inputs
3989 (list which))
3990 (propagated-inputs
3991 `(("ocaml-xmlm" ,ocaml-xmlm)
3992 ("ocaml-sedlex" ,ocaml-sedlex)
3993 ("ocaml-easy-format" ,ocaml-easy-format)
3994 ("ocaml-base64" ,ocaml-base64)))
3995 (home-page "http://piqi.org")
3996 (synopsis "Data serialization and conversion library")
3997 (description "Piqilib is the common library used by the piqi command-line
3998 tool and piqi-ocaml.")
3999 (license license:asl2.0)))
4000
4001 (define-public ocaml-uuidm
4002 (package
4003 (name "ocaml-uuidm")
4004 (version "0.9.8")
4005 (source (origin
4006 (method url-fetch)
4007 (uri (string-append "http://erratique.ch/software/uuidm/"
4008 "releases/uuidm-" version ".tbz"))
4009 (sha256
4010 (base32
4011 "1cr6xlzla9fmd587lfhzac0icifspjnqi9f4cdafshj3jn85nrpw"))))
4012 (build-system ocaml-build-system)
4013 (arguments
4014 `(#:build-flags
4015 (list "build" "--tests" "true" "--with-cmdliner" "true")
4016 #:phases
4017 (modify-phases %standard-phases
4018 (delete 'configure))))
4019 (native-inputs
4020 (list ocamlbuild opam))
4021 (propagated-inputs
4022 `(("cmdliner" ,ocaml-cmdliner)
4023 ("topkg" ,ocaml-topkg)))
4024 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-uuidm))))
4025 (home-page "https://erratique.ch/software/uuidm")
4026 (synopsis "Universally unique identifiers for OCaml")
4027 (description "Uuidm is an OCaml module implementing 128 bits universally
4028 unique identifiers (UUIDs) version 3, 5 (named based with MD5, SHA-1 hashing)
4029 and 4 (random based) according to RFC 4122.")
4030 (license license:isc)))
4031
4032 (define-public ocaml4.07-uuidm
4033 (package-with-ocaml4.07
4034 (package
4035 (inherit ocaml-uuidm)
4036 (version "0.9.7")
4037 (source (origin
4038 (method url-fetch)
4039 (uri (string-append "http://erratique.ch/software/uuidm/"
4040 "releases/uuidm-" version ".tbz"))
4041 (sha256
4042 (base32
4043 "1ivxb3hxn9bk62rmixx6px4fvn52s4yr1bpla7rgkcn8981v45r8"))))
4044 (properties '()))))
4045
4046 (define-public ocaml-graph
4047 (package
4048 (name "ocaml-graph")
4049 (version "1.8.8")
4050 (source (origin
4051 (method url-fetch)
4052 (uri (string-append "http://ocamlgraph.lri.fr/download/"
4053 "ocamlgraph-" version ".tar.gz"))
4054 (sha256
4055 (base32
4056 "0m9g16wrrr86gw4fz2fazrh8nkqms0n863w7ndcvrmyafgxvxsnr"))))
4057 (build-system ocaml-build-system)
4058 (arguments
4059 `(#:install-target "install-findlib"
4060 #:tests? #f
4061 #:phases
4062 (modify-phases %standard-phases
4063 (add-before 'configure 'set-shell
4064 (lambda* (#:key inputs #:allow-other-keys)
4065 (setenv "CONFIG_SHELL"
4066 (search-input-file inputs "/bin/sh")))))))
4067 (inputs (list lablgtk))
4068 (properties `((upstream-name . "ocamlgraph")))
4069 (home-page "http://ocamlgraph.lri.fr/")
4070 (synopsis "Graph library for OCaml")
4071 (description "OCamlgraph is a generic graph library for OCaml.")
4072 (license license:lgpl2.1)))
4073
4074 (define-public ocaml-piqi
4075 (package
4076 (name "ocaml-piqi")
4077 (version "0.7.7")
4078 (source (origin
4079 (method git-fetch)
4080 (uri (git-reference
4081 (url "https://github.com/alavrik/piqi-ocaml")
4082 (commit (string-append "v" version))))
4083 (file-name (git-file-name name version))
4084 (sha256
4085 (base32
4086 "1913jpsb8mvqi8609j4g4sm5jhg50dq0xqxgy8nmvknfryyc89nm"))))
4087 (build-system ocaml-build-system)
4088 (arguments
4089 `(#:make-flags
4090 ,#~(list (string-append "DESTDIR=" #$output)
4091 (string-append "SHELL="
4092 #+(file-append (canonical-package bash-minimal)
4093 "/bin/sh")))
4094 #:phases
4095 (modify-phases %standard-phases
4096 (add-after 'unpack 'make-files-writable
4097 (lambda _
4098 (for-each make-file-writable (find-files "."))
4099 #t))
4100 (delete 'configure))))
4101 (native-inputs
4102 (list which protobuf)) ; for tests
4103 (propagated-inputs
4104 `(("ocaml-num" ,ocaml-num)
4105 ("ocaml-piqilib" ,ocaml-piqilib)
4106 ("ocaml-stdlib-shims" ,ocaml-stdlib-shims)))
4107 (home-page "https://github.com/alavrik/piqi-ocaml")
4108 (synopsis "Protocol serialization system for OCaml")
4109 (description "Piqi is a multi-format data serialization system for OCaml.
4110 It provides a uniform interface for serializing OCaml data structures to JSON,
4111 XML and Protocol Buffers formats.")
4112 (license license:asl2.0)))
4113
4114 (define-public ocaml-ppx-bap
4115 (package
4116 (name "ocaml-ppx-bap")
4117 (version "0.14.0")
4118 (source (origin
4119 (method git-fetch)
4120 (uri (git-reference
4121 (url "https://github.com/BinaryAnalysisPlatform/ppx_bap")
4122 (commit (string-append "v" (version-major+minor version)))))
4123 (file-name (git-file-name name version))
4124 (sha256
4125 (base32
4126 "1c6rcdp8bicdiwqc2mb59cl9l2vxlp3y8hmnr9x924fq7acly248"))))
4127 (build-system dune-build-system)
4128 (arguments
4129 ;; No tests
4130 `(#:tests? #f))
4131 (propagated-inputs (list ocaml-base-quickcheck
4132 ocaml-ppx-assert
4133 ocaml-ppx-bench
4134 ocaml-ppx-bin-prot
4135 ocaml-ppx-cold
4136 ocaml-ppx-compare
4137 ocaml-ppx-enumerate
4138 ocaml-ppx-fields-conv
4139 ocaml-ppx-hash
4140 ocaml-ppx-here
4141 ocaml-ppx-optcomp
4142 ocaml-ppx-sexp-conv
4143 ocaml-ppx-sexp-value
4144 ocaml-ppx-variants-conv
4145 ocaml-ppxlib))
4146 (properties `((upstream-name . "ppx_bap")))
4147 (home-page "https://github.com/BinaryAnalysisPlatform/ppx_bap")
4148 (synopsis "The set of ppx rewriters for BAP")
4149 (description
4150 "@code{ppx_bap} is the set of blessed ppx rewriters used in BAP projects.
4151 It fills the same role as @code{ppx_base} or @code{ppx_jane} (from which it is
4152 derived), but doesn't impose any style requirements and has only the minimal
4153 necessary set of rewriters.")
4154 (license license:expat)))
4155
4156 (define-public bap
4157 (package
4158 (name "bap")
4159 (version "2.5.0-alpha")
4160 (home-page "https://github.com/BinaryAnalysisPlatform/bap")
4161 (source (origin
4162 (method git-fetch)
4163 (uri (git-reference
4164 (url home-page)
4165 (commit (string-append "v" version))))
4166 (file-name (git-file-name name version))
4167 (sha256
4168 (base32
4169 "1fw9pp0xnssc08qqfkcafffap4f46hw7zmk80gif5yc4nazga8w5"))))
4170 (build-system ocaml-build-system)
4171 (arguments
4172 (list
4173 #:use-make? #t
4174 #:phases
4175 #~(modify-phases %standard-phases
4176 (add-before 'configure 'fix-ncurses
4177 (lambda _
4178 (substitute* "oasis/llvm"
4179 (("-lcurses") "-lncurses"))
4180 #t))
4181 (replace 'configure
4182 (lambda* (#:key outputs inputs #:allow-other-keys)
4183 (for-each make-file-writable (find-files "." "."))
4184 ;; Package name changed
4185 (substitute* "oasis/elf-loader"
4186 (("bitstring.ppx") "ppx_bitstring"))
4187 ;; We don't have a monolithic llvm
4188 (substitute* "oasis/llvm.setup.ml.in"
4189 (("llvm_static = \"true\"") "true"))
4190 (invoke "./configure" "--prefix"
4191 (assoc-ref outputs "out")
4192 "--libdir"
4193 (string-append
4194 (assoc-ref outputs "out")
4195 "/lib/ocaml/site-lib")
4196 (string-append "--with-llvm-version=" #$(package-version llvm))
4197 "--with-llvm-config=llvm-config"
4198 "--disable-ghidra"
4199 "--disable-llvm-static"
4200 "--enable-llvm"
4201 "--enable-everything"))))))
4202 (native-inputs (list clang ocaml-oasis ocaml-ounit))
4203 (propagated-inputs
4204 (list
4205 camlzip
4206 ocaml-bitstring
4207 ocaml-cmdliner
4208 ocaml-core-kernel
4209 ocaml-ezjsonm
4210 ocaml-fileutils
4211 ocaml-frontc
4212 ocaml-graph
4213 ocaml-linenoise
4214 ocaml-ocurl
4215 ocaml-piqi
4216 ocaml-ppx-bap
4217 ocaml-ppx-bitstring
4218 ocaml-re
4219 ocaml-uri
4220 ocaml-utop
4221 ocaml-uuidm
4222 ocaml-yojson
4223 ocaml-z3
4224 ocaml-zarith))
4225 (inputs
4226 (list gmp llvm ncurses))
4227 (synopsis "Binary Analysis Platform")
4228 (description "Binary Analysis Platform is a framework for writing program
4229 analysis tools, that target binary files. The framework consists of a plethora
4230 of libraries, plugins, and frontends. The libraries provide code reusability,
4231 the plugins facilitate extensibility, and the frontends serve as entry points.")
4232 (license license:expat)))
4233
4234 (define-public ocaml-camomile
4235 (package
4236 (name "ocaml-camomile")
4237 (version "1.0.2")
4238 (home-page "https://github.com/yoriyuki/Camomile")
4239 (source (origin
4240 (method url-fetch)
4241 (uri (string-append home-page "/releases/download/" version
4242 "/camomile-" version ".tbz"))
4243 (sha256
4244 (base32
4245 "0chn7ldqb3wyf95yhmsxxq65cif56smgz1mhhc7m0dpwmyq1k97h"))))
4246 (build-system dune-build-system)
4247 (arguments
4248 `(#:test-target "camomile-test"
4249 #:tests? #f ; Tests fail, see https://github.com/yoriyuki/Camomile/issues/82
4250 #:phases
4251 (modify-phases %standard-phases
4252 (add-before 'build 'fix-usr-share
4253 (lambda* (#:key outputs #:allow-other-keys)
4254 (substitute* '("Camomile/dune" "configure.ml")
4255 (("/usr/share") (string-append (assoc-ref outputs "out") "/share")))
4256 #t)))))
4257 (synopsis "Comprehensive Unicode library")
4258 (description "Camomile is a Unicode library for OCaml. Camomile provides
4259 Unicode character type, UTF-8, UTF-16, UTF-32 strings, conversion to/from about
4260 200 encodings, collation and locale-sensitive case mappings, and more. The
4261 library is currently designed for Unicode Standard 3.2.")
4262 ;; with an exception for linked libraries to use a different license
4263 (license license:lgpl2.0+)))
4264
4265 (define-public ocaml-charinfo-width
4266 ;; Add LICENSE file and Dune tests
4267 (let ((commit "20aaaa6dca8f1e0b1ace55b6f2a8ba5e5910b620"))
4268 (package
4269 (name "ocaml-charinfo-width")
4270 (version (git-version "1.1.0" "1" commit))
4271 (home-page "https://github.com/kandu/charinfo_width/")
4272 (source (origin
4273 (method git-fetch)
4274 (uri (git-reference
4275 (url home-page)
4276 (commit commit)))
4277 (file-name (git-file-name name version))
4278 (sha256
4279 (base32
4280 "04gil5hxm2jax9paw3i24d8zyzhyl5cphzfyryvy2lcrm3c485q0"))))
4281 (build-system dune-build-system)
4282 (propagated-inputs
4283 (list ocaml-result ocaml-camomile))
4284 (native-inputs
4285 (list ocaml-ppx-expect))
4286 (properties
4287 `((upstream-name . "charInfo_width")))
4288 (synopsis "Determine column width for a character")
4289 (description "This module implements purely in OCaml a character width
4290 function that follows the prototype of POSIX's wcwidth.")
4291 (license license:expat))))
4292
4293 (define-public ocaml-zed
4294 (package
4295 (name "ocaml-zed")
4296 (version "3.1.0")
4297 (home-page "https://github.com/ocaml-community/zed")
4298 (source
4299 (origin
4300 (method git-fetch)
4301 (uri (git-reference
4302 (url home-page)
4303 (commit version)))
4304 (file-name (git-file-name name version))
4305 (sha256
4306 (base32 "04vr1a94imsghm98iigc35rhifsz0rh3qz2qm0wam2wvp6vmrx0p"))))
4307 (build-system dune-build-system)
4308 (arguments
4309 `(#:test-target "."))
4310 (propagated-inputs
4311 `(("ocaml-charInfo-width" ,ocaml-charinfo-width)
4312 ("ocaml-camomile" ,ocaml-camomile)
4313 ("ocaml-react" ,ocaml-react)))
4314 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-zed))))
4315 (synopsis "Abstract engine for text edition in OCaml")
4316 (description
4317 "This module provides an abstract engine for text edition. It can be
4318 used to write text editors, edition widgets, readlines, and more. The module
4319 Zed uses Camomile to fully support the Unicode specification, and implements
4320 an UTF-8 encoded string type with validation, and a rope datastructure to
4321 achieve efficient operations on large Unicode buffers. Zed also features a
4322 regular expression search on ropes. To support efficient text edition
4323 capabilities, Zed provides macro recording and cursor management facilities.")
4324 (license license:bsd-3)))
4325
4326 (define-public ocaml4.07-zed
4327 (package-with-ocaml4.07
4328 (package
4329 (inherit ocaml-zed)
4330 (version "2.0.3")
4331 (source (origin
4332 (method git-fetch)
4333 (uri (git-reference
4334 (url "https://github.com/ocaml-community/zed")
4335 (commit version)))
4336 (file-name (git-file-name "ocaml4.07-zed" version))
4337 (sha256
4338 (base32
4339 "0pa9awinqr0plp4b2az78dwpvh01pwaljnn5ydg8mc6hi7rmir55"))))
4340 (properties '()))))
4341
4342 (define-public ocaml-lambda-term
4343 (package
4344 (name "ocaml-lambda-term")
4345 (version "3.2.0")
4346 (home-page "https://github.com/ocaml-community/lambda-term")
4347 (source (origin
4348 (method git-fetch)
4349 (uri (git-reference
4350 (url home-page)
4351 (commit version)))
4352 (file-name (git-file-name name version))
4353 (sha256
4354 (base32
4355 "048k26644wq5wlwk0j179dxrxyz9nxqqq4vvhyh6pqpgxdajd44i"))))
4356 (build-system dune-build-system)
4357 (arguments
4358 `(#:test-target "."))
4359 (propagated-inputs
4360 (list ocaml-lwt
4361 ocaml-lwt-log
4362 ocaml-react
4363 ocaml-zed
4364 ocaml-camomile
4365 ocaml-lwt-react
4366 ocaml-mew-vi))
4367 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-lambda-term))))
4368 (synopsis "Terminal manipulation library for OCaml")
4369 (description "Lambda-Term is a cross-platform library for manipulating the
4370 terminal. It provides an abstraction for keys, mouse events, colors, as well as
4371 a set of widgets to write curses-like applications. The main objective of
4372 Lambda-Term is to provide a higher level functional interface to terminal
4373 manipulation than, for example, ncurses, by providing a native OCaml interface
4374 instead of bindings to a C library.")
4375 (license license:bsd-3)))
4376
4377 (define-public ocaml4.07-lambda-term
4378 (package-with-ocaml4.07
4379 (package
4380 (inherit ocaml-lambda-term)
4381 (version "2.0.2")
4382 (source
4383 (origin
4384 (method git-fetch)
4385 (uri (git-reference
4386 (url "https://github.com/ocaml-community/lambda-term")
4387 (commit version)))
4388 (file-name (git-file-name "ocaml4.07-lambda-term" version))
4389 (sha256
4390 (base32 "0zcjy6fvf0d3i2ssz96asl889n3r6bplyzk7xvb2s3dkxbgcisyy"))))
4391 (propagated-inputs
4392 `(("ocaml-lwt" ,ocaml-lwt)
4393 ("ocaml-lwt-log" ,ocaml-lwt-log)
4394 ("ocaml-lwt-react" ,ocaml-lwt-react)
4395 ("ocaml-zed" ,ocaml-zed)))
4396 (properties '()))))
4397
4398 (define-public ocaml-utop
4399 (package
4400 (name "ocaml-utop")
4401 (version "2.9.2")
4402 (source
4403 (origin
4404 (method git-fetch)
4405 (uri (git-reference
4406 (url "https://github.com/ocaml-community/utop")
4407 (commit version)))
4408 (file-name (git-file-name name version))
4409 (sha256
4410 (base32 "0z5anakgbndhyzbi570pfs2fy69bnmgq9jflgfbly2rhbhwa7wgj"))))
4411 (build-system dune-build-system)
4412 (arguments
4413 `(#:test-target "."))
4414 (native-inputs
4415 (list ocaml-cppo))
4416 (propagated-inputs
4417 (list ocaml-lambda-term ocaml-lwt ocaml-lwt-react ocaml-camomile
4418 ocaml-react))
4419 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-utop))))
4420 (home-page "https://github.com/ocaml-community/utop")
4421 (synopsis "Improved interface to the OCaml toplevel")
4422 (description "UTop is an improved toplevel for OCaml. It can run in a
4423 terminal or in Emacs. It supports line editing, history, real-time and context
4424 sensitive completion, colors, and more.")
4425 (license license:bsd-3)))
4426
4427 (define-public ocaml4.07-utop
4428 (package-with-ocaml4.07
4429 (package
4430 (inherit ocaml-utop)
4431 (version "2.4.3")
4432 (source
4433 (origin
4434 (method git-fetch)
4435 (uri (git-reference
4436 (url "https://github.com/ocaml-community/utop")
4437 (commit version)))
4438 (file-name (git-file-name "ocaml4.07-utop" version))
4439 (sha256
4440 (base32 "1bl4943qpi3qy152dbdm5glhx19zsiylmn4rcxi8l66g58hikyjp"))))
4441 (propagated-inputs
4442 `(("ocaml-lambda-term" ,ocaml-lambda-term)
4443 ("ocaml-lwt" ,ocaml-lwt)
4444 ("ocaml-react" ,ocaml-react)
4445 ("ocaml-camomile" ,ocaml-camomile)
4446 ("ocaml-zed" ,ocaml-zed)))
4447 (properties '()))))
4448
4449 (define-public ocaml-ptmap
4450 (package
4451 (name "ocaml-ptmap")
4452 (version "2.0.5")
4453 (source (origin
4454 (method url-fetch)
4455 (uri
4456 (string-append "https://github.com/backtracking/ptmap/releases/download/"
4457 version "/ptmap-" version ".tbz"))
4458 (sha256
4459 (base32
4460 "1apk61fc1y1g7x3m3c91fnskvxp6i0vk5nxwvipj56k7x2pzilgb"))))
4461 (build-system dune-build-system)
4462 (arguments
4463 (list #:phases
4464 #~(modify-phases %standard-phases
4465 (replace 'check
4466 (lambda* (#:key tests? #:allow-other-keys)
4467 (when tests?
4468 (invoke "dune" "runtest")))))))
4469 (propagated-inputs (list ocaml-stdlib-shims ocaml-seq))
4470 (home-page "https://github.com/backtracking/ptmap")
4471 (synopsis "Maps of integers implemented as Patricia trees")
4472 (description
4473 "An implementation inspired by Okasaki & Gill's paper 'Fast Mergeable
4474 Integer Maps.'")
4475 (license license:lgpl2.1))) ; with linking exception
4476
4477 (define-public ocaml-integers
4478 (package
4479 (name "ocaml-integers")
4480 (version "0.7.0")
4481 (home-page "https://github.com/ocamllabs/ocaml-integers")
4482 (source (origin
4483 (method git-fetch)
4484 (uri (git-reference
4485 (url home-page)
4486 (commit version)))
4487 (file-name (git-file-name name version))
4488 (sha256
4489 (base32
4490 "0c0bmy53ag6504kih0cvnp4yf7mbcimb18m1mgs592ffb0zj1rff"))))
4491 (build-system dune-build-system)
4492 (arguments
4493 `(#:tests? #f)) ; no tests
4494 (propagated-inputs
4495 (list ocaml-stdlib-shims))
4496 (synopsis "Various signed and unsigned integer types for OCaml")
4497 (description "The ocaml-integers library provides a number of 8-, 16-, 32-
4498 and 64-bit signed and unsigned integer types, together with aliases such as
4499 long and size_t whose sizes depend on the host platform.")
4500 (license license:expat)))
4501
4502 (define-public ocaml-ctypes
4503 (package
4504 (name "ocaml-ctypes")
4505 (version "0.20.1")
4506 (home-page "https://github.com/ocamllabs/ocaml-ctypes")
4507 (source (origin
4508 (method git-fetch)
4509 (uri (git-reference
4510 (url home-page)
4511 (commit version)))
4512 (file-name (git-file-name name version))
4513 (sha256
4514 (base32
4515 "0ilzq9qzvwv9rc08cc9wchsx636zp870i7qvqmbigaa2qb812m0z"))))
4516 (build-system ocaml-build-system)
4517 (arguments
4518 `(#:phases
4519 (modify-phases %standard-phases
4520 (add-after 'unpack 'make-writable
4521 (lambda _
4522 (for-each make-file-writable
4523 (find-files "."))))
4524 (delete 'configure))))
4525 (native-inputs
4526 `(("pkg-config" ,pkg-config)
4527 ("ounit" ,ocaml-ounit)
4528 ("lwt" ,ocaml-lwt)))
4529 (propagated-inputs
4530 `(("bigarray-compat" ,ocaml-bigarray-compat)
4531 ("integers" ,ocaml-integers)))
4532 (inputs
4533 (list libffi))
4534 (synopsis "Library for binding to C libraries using pure OCaml")
4535 (description "Ctypes is a library for binding to C libraries using pure
4536 OCaml. The primary aim is to make writing C extensions as straightforward as
4537 possible. The core of ctypes is a set of combinators for describing the
4538 structure of C types -- numeric types, arrays, pointers, structs, unions and
4539 functions. You can use these combinators to describe the types of the
4540 functions that you want to call, then bind directly to those functions -- all
4541 without writing or generating any C!")
4542 (license license:expat)))
4543
4544 (define-public ocaml-ocb-stubblr
4545 (package
4546 (name "ocaml-ocb-stubblr")
4547 (version "0.1.1")
4548 (home-page "https://github.com/pqwy/ocb-stubblr")
4549 (source (origin
4550 (method url-fetch)
4551 (uri (string-append
4552 home-page "/releases/download/v0.1.1/ocb-stubblr-"
4553 version ".tbz"))
4554 (file-name (string-append name "-" version ".tbz"))
4555 (sha256
4556 (base32
4557 "167b7x1j21mkviq8dbaa0nmk4rps2ilvzwx02igsc2706784z72f"))))
4558 (build-system ocaml-build-system)
4559 (arguments
4560 `(#:build-flags (list "build" "--tests" "true")
4561 #:phases
4562 (modify-phases %standard-phases
4563 (delete 'configure)
4564 (add-before 'build 'fix-for-guix
4565 (lambda _
4566 (substitute* "src/ocb_stubblr.ml"
4567 ;; Do not fail when opam is not present or initialized
4568 (("error_msgf \"error running opam\"") "\"\"")
4569 ;; Guix doesn't have cc, but it has gcc
4570 (("\"cc\"") "\"gcc\""))
4571 #t)))))
4572 (inputs
4573 `(("topkg" ,ocaml-topkg)
4574 ("opam" ,opam)))
4575 (native-inputs
4576 `(("astring" ,ocaml-astring)
4577 ("ocamlbuild" ,ocamlbuild)))
4578 (synopsis "OCamlbuild plugin for C stubs")
4579 (description "Ocb-stubblr is about ten lines of code that you need to
4580 repeat over, over, over and over again if you are using ocamlbuild to build
4581 OCaml projects that contain C stubs.")
4582 (license license:isc)))
4583
4584 (define-public ocaml-tsdl
4585 (package
4586 (name "ocaml-tsdl")
4587 (version "0.9.9")
4588 (home-page "https://erratique.ch/software/tsdl")
4589 (source (origin
4590 (method url-fetch)
4591 (uri (string-append home-page "/releases/tsdl-"
4592 version ".tbz"))
4593 (file-name (string-append name "-" version ".tar.gz"))
4594 (sha256
4595 (base32
4596 "1m565jgfanijjzp64c1rylahkpmrrb03ywj202j49n06nvwp788s"))))
4597 (build-system ocaml-build-system)
4598 (arguments
4599 `(#:build-flags '("build")
4600 #:tests? #f; tests require a display device
4601 #:phases
4602 (modify-phases %standard-phases
4603 (delete 'configure))))
4604 (native-inputs
4605 (list ocamlbuild ocaml-astring opam pkg-config))
4606 (inputs
4607 `(("topkg" ,ocaml-topkg)
4608 ("sdl2" ,sdl2)
4609 ("integers" ,ocaml-integers)
4610 ("ctypes" ,ocaml-ctypes)))
4611 (synopsis "Thin bindings to SDL for OCaml")
4612 (description "Tsdl is an OCaml library providing thin bindings to the
4613 cross-platform SDL C library.")
4614 (license license:isc)))
4615
4616 (define-public dedukti
4617 (package
4618 (name "dedukti")
4619 (version "2.6.0")
4620 (home-page "https://deducteam.github.io/")
4621 (source
4622 (origin
4623 (method git-fetch)
4624 (uri (git-reference
4625 (url "https://github.com/deducteam/dedukti")
4626 (commit (string-append "v" version))))
4627 (file-name (git-file-name name version))
4628 (sha256
4629 (base32
4630 "0frl3diff033i4fmq304b8wbsdnc9mvlhmwd7a3zd699ng2lzbxb"))))
4631 (inputs
4632 `(("menhir" ,ocaml-menhir)))
4633 (native-inputs
4634 (list ocamlbuild))
4635 (build-system ocaml-build-system)
4636 (arguments
4637 `(#:phases
4638 ,#~(modify-phases %standard-phases
4639 (delete 'configure)
4640 (replace 'build
4641 (lambda _
4642 (invoke "make")))
4643 (replace 'check
4644 (lambda _
4645 (invoke "make" "tests")))
4646 (add-before 'install 'set-binpath
4647 ;; Change binary path in the makefile
4648 (lambda _
4649 (substitute* "GNUmakefile"
4650 (("BINDIR = (.*)$")
4651 (string-append "BINDIR = " #$output "/bin")))))
4652 (replace 'install
4653 (lambda _
4654 (invoke "make" "install"))))))
4655 (synopsis "Proof-checker for the λΠ-calculus modulo theory, an extension of
4656 the λ-calculus")
4657 (description "Dedukti is a proof-checker for the λΠ-calculus modulo
4658 theory. The λΠ-calculus is an extension of the simply typed λ-calculus with
4659 dependent types. The λΠ-calculus modulo theory is itself an extension of the
4660 λΠ-calculus where the context contains variable declaration as well as rewrite
4661 rules. This system is not designed to develop proofs, but to check proofs
4662 developed in other systems. In particular, it enjoys a minimalistic syntax.")
4663 (license license:cecill-c)))
4664
4665 (define-public emacs-dedukti-mode
4666 (let ((commit "d7c3505a1046187de3c3aeb144455078d514594e"))
4667 (package
4668 (name "emacs-dedukti-mode")
4669 (version (git-version "0" "0" commit))
4670 (home-page "https://github.com/rafoo/dedukti-mode")
4671 (source (origin
4672 (method git-fetch)
4673 (uri (git-reference
4674 (url home-page)
4675 (commit commit)))
4676 (sha256
4677 (base32
4678 "1842wikq24c8rg0ac84vb1qby9ng1nssxswyyni4kq85lng5lcrp"))
4679 (file-name (git-file-name name version))))
4680 (inputs
4681 (list dedukti))
4682 (build-system emacs-build-system)
4683 (arguments
4684 '(#:phases
4685 (modify-phases %standard-phases
4686 (add-before 'install 'patch-dkpath
4687 (lambda _
4688 (let ((dkcheck-path (which "dkcheck")))
4689 (substitute* "dedukti-mode.el"
4690 (("dedukti-path \"(.*)\"")
4691 (string-append "dedukti-path \"" dkcheck-path "\"")))))))))
4692 (synopsis "Emacs major mode for Dedukti files")
4693 (description "This package provides an Emacs major mode for editing
4694 Dedukti files.")
4695 (license license:cecill-b))))
4696
4697 (define-public emacs-flycheck-dedukti
4698 (let ((commit "3dbff5646355f39d57a3ec514f560a6b0082a1cd"))
4699 (package
4700 (name "emacs-flycheck-dedukti")
4701 (version (git-version "0" "0" commit))
4702 (home-page "https://github.com/rafoo/flycheck-dedukti")
4703 (source (origin
4704 (method git-fetch)
4705 (uri (git-reference
4706 (url home-page)
4707 (commit commit)))
4708 (sha256
4709 (base32
4710 "1ffpxnwl3wx244n44mbw81g00nhnykd0lnid29f4aw1av7w6nw8l"))
4711 (file-name (git-file-name name version))))
4712 (build-system emacs-build-system)
4713 (inputs
4714 (list emacs-dedukti-mode emacs-flycheck))
4715 (synopsis "Flycheck integration for the dedukti language")
4716 (description "This package provides a frontend for Flycheck to perform
4717 syntax checking on dedukti files.")
4718 (license license:cecill-b))))
4719
4720 (define-public ocaml-jst-config
4721 (package
4722 (name "ocaml-jst-config")
4723 (version "0.15.1")
4724 (source
4725 (origin
4726 (method git-fetch)
4727 (uri (git-reference
4728 (url "https://github.com/janestreet/jst-config")
4729 (commit (string-append "v" version))))
4730 (file-name (git-file-name name version))
4731 (sha256
4732 (base32
4733 "1yp5p63clvaxmkf7vlasgyapxc31x29c154pyq63n0fvi2fpf4y3"))))
4734 (build-system dune-build-system)
4735 (arguments '(#:tests? #f)) ; no tests
4736 (propagated-inputs
4737 (list ocaml-base ocaml-ppx-assert ocaml-stdio dune-configurator))
4738 (home-page "https://github.com/janestreet/jst-config")
4739 (synopsis "Compile-time configuration for Jane Street libraries")
4740 (description "Defines compile-time constants used in Jane Street libraries
4741 such as Base, Core, and Async. This package has an unstable interface; it is
4742 intended only to share configuration between different packages from Jane
4743 Street. Future updates may not be backward-compatible, and we do not
4744 recommend using this package directly.")
4745 (license license:expat)))
4746
4747 (define-public ocaml-jane-street-headers
4748 (package
4749 (name "ocaml-jane-street-headers")
4750 (version "0.15.0")
4751 (source
4752 (janestreet-origin
4753 "jane-street-headers" version
4754 "1r27r0bxxa0iaah5rm84lwhrmh784vfpmb6056hpv0p34rxs7r1l"))
4755 (build-system dune-build-system)
4756 (arguments '(#:tests? #f)) ; no tests
4757 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-jane-street-headers))))
4758 (home-page "https://github.com/janestreet/jane-street-headers")
4759 (synopsis "Jane Street C header files")
4760 (description "C header files shared between the various Jane Street
4761 packages.")
4762 (license license:expat)))
4763
4764 (define-public ocaml-time-now
4765 (package
4766 (name "ocaml-time-now")
4767 (version "0.15.0")
4768 (source
4769 (janestreet-origin
4770 "time_now" version
4771 "1a6b1f55mwci1bd8w8vji0qn6wbs60jbwixvwgy4klx2blq57cqk"))
4772 (build-system dune-build-system)
4773 (arguments '(#:tests? #f)) ; no tests
4774 (propagated-inputs
4775 (list ocaml-base ocaml-jane-street-headers ocaml-jst-config
4776 ocaml-ppx-base ocaml-ppx-optcomp))
4777 (properties `((upstream-name . "time_now")))
4778 (home-page
4779 "https://github.com/janestreet/time_now")
4780 (synopsis "Reports the current time")
4781 (description
4782 "Provides a single function to report the current time in nanoseconds
4783 since the start of the Unix epoch.")
4784 (license license:expat)))
4785
4786 (define-public ocaml-ppx-inline-test
4787 (package
4788 (name "ocaml-ppx-inline-test")
4789 (version "0.15.0")
4790 (home-page "https://github.com/janestreet/ppx_inline_test")
4791 (source
4792 (origin
4793 (method git-fetch)
4794 (uri (git-reference
4795 (url (string-append home-page ".git"))
4796 (commit (string-append "v" version))))
4797 (file-name (git-file-name name version))
4798 (sha256
4799 (base32
4800 "1a0gaj9p6gbn5j7c258mnzr7yjlq0hqi3aqqgyj1g2dbk1sxdbjz"))))
4801 (build-system dune-build-system)
4802 (arguments
4803 `(#:tests? #f)) ;see home page README for further information
4804 (propagated-inputs
4805 (list ocaml-base
4806 ocaml-migrate-parsetree
4807 ocaml-compiler-libs
4808 ocaml-sexplib0
4809 ocaml-stdio
4810 ocaml-ppxlib
4811 ocaml-time-now))
4812 (properties `((upstream-name . "ppx_inline_test")
4813 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-inline-test))))
4814 (synopsis "Syntax extension for writing in-line tests in ocaml code")
4815 (description "This package contains a syntax extension for writing
4816 in-line tests in ocaml code. It is part of Jane Street's PPX rewriters
4817 collection.")
4818 (license license:expat)))
4819
4820 (define-public ocaml4.07-ppx-inline-test
4821 (package-with-ocaml4.07
4822 (package
4823 (inherit ocaml-ppx-inline-test)
4824 (name "ocaml-ppx-inline-test")
4825 (version "0.12.0")
4826 (home-page "https://github.com/janestreet/ppx_inline_test")
4827 (source
4828 (origin
4829 (method git-fetch)
4830 (uri (git-reference
4831 (url (string-append home-page ".git"))
4832 (commit (string-append "v" version))))
4833 (file-name (git-file-name name version))
4834 (sha256
4835 (base32
4836 "0nyz411zim94pzbxm2l2v2l9jishcxwvxhh142792g2s18r4vn50"))))
4837 (propagated-inputs
4838 `(("ocaml-base" ,ocaml-base)
4839 ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
4840 ("ocaml-compiler-libs" ,ocaml-compiler-libs)
4841 ("ocaml-sexplib0" ,ocaml-sexplib0)
4842 ("ocaml-stdio" ,ocaml-stdio)
4843 ("ocaml-ppxlib" ,ocaml-ppxlib)))
4844 (properties `((upstream-name . "ppx_inline_test"))))))
4845
4846 (define-public ocaml-bindlib
4847 (package
4848 (name "ocaml-bindlib")
4849 (version "6.0.0")
4850 (source
4851 (origin
4852 (method git-fetch)
4853 (uri (git-reference
4854 (url "https://github.com/rlepigre/ocaml-bindlib")
4855 (commit version)))
4856 (file-name (git-file-name name version))
4857 (sha256
4858 (base32
4859 "1viyws3igy49hfaj4jaiwm4iggck9zdn7r3g6kh1n4zxphqk57yk"))))
4860 (build-system dune-build-system)
4861 (arguments
4862 `(#:test-target "."))
4863 (native-inputs
4864 (list ocamlbuild ocaml-findlib))
4865 (home-page "https://rlepigre.github.io/ocaml-bindlib/")
4866 (synopsis "OCaml Bindlib library for bound variables")
4867 (description "Bindlib is a library allowing the manipulation of data
4868 structures with bound variables. It is particularly useful when writing ASTs
4869 for programming languages, but also for manipulating terms of the λ-calculus
4870 or quantified formulas.")
4871 (license license:gpl3+)))
4872
4873 (define-public ocaml-earley
4874 (package
4875 (name "ocaml-earley")
4876 (version "3.0.0")
4877 (home-page "https://github.com/rlepigre/ocaml-earley")
4878 (source
4879 (origin
4880 (method git-fetch)
4881 (uri (git-reference
4882 (url (string-append home-page ".git"))
4883 (commit version)))
4884 (file-name (git-file-name name version))
4885 (sha256
4886 (base32
4887 "1vi58zdxchpw6ai0bz9h2ggcmg8kv57yk6qbx82lh47s5wb3mz5y"))))
4888 (build-system dune-build-system)
4889 (arguments
4890 `(#:test-target "."))
4891 (propagated-inputs
4892 (list ocaml-stdlib-shims))
4893 (synopsis "Parsing library based on Earley Algorithm")
4894 (description "Earley is a parser combinator library base on Earley's
4895 algorithm. It is intended to be used in conjunction with an OCaml syntax
4896 extension which allows the definition of parsers inside the language. There
4897 is also support for writing OCaml syntax extensions in a camlp4 style.")
4898 (license license:cecill-b)))
4899
4900 (define-public ocaml-timed
4901 (package
4902 (name "ocaml-timed")
4903 (version "1.0")
4904 (home-page "https://github.com/rlepigre/ocaml-timed")
4905 (source (origin
4906 (method git-fetch)
4907 (uri (git-reference
4908 (url (string-append home-page ".git"))
4909 (commit (string-append name "_" version))))
4910 (sha256
4911 (base32
4912 "0hfxz710faxy5yk97bkfnw87r732jcxxhmjppwrbfdb6pd0wks96"))
4913 (file-name (git-file-name name version))))
4914 (build-system ocaml-build-system)
4915 (arguments
4916 '(#:phases
4917 (modify-phases %standard-phases
4918 (delete 'configure)
4919 (replace 'build
4920 (lambda _
4921 (invoke "make")))
4922 (replace 'install
4923 (lambda _
4924 (invoke "make" "install")))
4925 (replace 'check
4926 (lambda _
4927 (invoke "make" "tests"))))))
4928 (synopsis "Timed references for imperative state")
4929 (description "Timed references for imperative state. This module provides
4930 an alternative type for references (or mutable cells) supporting undo/redo
4931 operations. In particular, an abstract notion of time is used to capture the
4932 state of the references at any given point, so that it can be restored. Note
4933 that usual reference operations only have a constant time / memory overhead
4934 (compared to those of the standard library).
4935
4936 Moreover, we provide an alternative implementation based on the references
4937 of the standard library (Pervasives module). However, it is less efficient
4938 than the first one.")
4939 (license license:expat)))
4940
4941 (define-public ocaml-biniou
4942 (package
4943 (name "ocaml-biniou")
4944 (version "1.2.1")
4945 (home-page "https://github.com/mjambon/biniou")
4946 (source
4947 (origin
4948 (method git-fetch)
4949 (uri (git-reference
4950 (url (string-append home-page ".git"))
4951 (commit version)))
4952 (file-name (git-file-name name version))
4953 (sha256
4954 (base32
4955 "0x2kiy809n1j0yf32l7hj102y628jp5jdrkbi3z7ld8jq04h1790"))))
4956 (build-system dune-build-system)
4957 (arguments
4958 `(#:phases
4959 (modify-phases %standard-phases
4960 (add-before 'build 'make-writable
4961 (lambda _ (for-each make-file-writable (find-files "." ".")))))))
4962 (inputs
4963 (list ocaml-easy-format))
4964 (native-inputs
4965 (list which))
4966 (synopsis "Data format designed for speed, safety, ease of use and backward
4967 compatibility")
4968 (description "Biniou (pronounced \"be new\" is a binary data format
4969 designed for speed, safety, ease of use and backward compatibility as
4970 protocols evolve. Biniou is vastly equivalent to JSON in terms of
4971 functionality but allows implementations several times faster (4 times faster
4972 than yojson), with 25-35% space savings.")
4973 (license license:bsd-3)))
4974
4975 (define-public ocaml-yojson
4976 (package
4977 (name "ocaml-yojson")
4978 (version "1.7.0")
4979 (home-page "https://github.com/ocaml-community/yojson")
4980 (source
4981 (origin
4982 (method git-fetch)
4983 (uri (git-reference
4984 (url (string-append home-page ".git"))
4985 (commit version)))
4986 (file-name (git-file-name name version))
4987 (sha256
4988 (base32
4989 "0zncsw8bgbkh1pfvfc7nh628hfj84lgx6jwhp9ashj3z1z0w3xjn"))))
4990 (build-system dune-build-system)
4991 (arguments
4992 `(#:test-target "."))
4993 (propagated-inputs
4994 (list ocaml-biniou ocaml-easy-format))
4995 (native-inputs
4996 (list ocaml-alcotest ocaml-cppo))
4997 (synopsis "Low-level JSON library for OCaml")
4998 (description "Yojson is an optimized parsing and printing library for the
4999 JSON format. It addresses a few shortcomings of json-wheel including 2x
5000 speedup, polymorphic variants and optional syntax for tuples and variants.
5001 @code{ydump} is a pretty printing command-line program provided with the
5002 yojson package. The program @code{atdgen} can be used to derive OCaml-JSON
5003 serializers and deserializers from type definitions.")
5004 (license license:bsd-3)))
5005
5006 (define-public ocaml-craml
5007 (package
5008 (name "ocaml-craml")
5009 (version "1.0.0")
5010 (home-page "https://github.com/realworldocaml/craml")
5011 (source
5012 (origin
5013 (method git-fetch)
5014 (uri (git-reference
5015 (url (string-append home-page ".git"))
5016 (commit version)))
5017 (file-name (git-file-name name version))
5018 (sha256
5019 (base32
5020 "197xjp4vmzdymf2ndinw271ihpf45h04mx8gqj8ypspxdr5fj1a5"))))
5021 (build-system dune-build-system)
5022 (arguments
5023 `(#:phases
5024 (modify-phases %standard-phases
5025 (add-before 'build 'upgrade
5026 (lambda _
5027 (invoke "dune" "upgrade")
5028 #t)))))
5029 (inputs
5030 (list ocaml-fmt ocaml-astring ocaml-logs ocaml-cmdliner))
5031 (synopsis
5032 "CRAM-testing framework for testing command line applications")
5033 (description "CRAM is a is functional testing framework for command line
5034 applications. @code{craml} is freely inspired by the
5035 Mercurial's @code{https://www.selenic.com/blog/?p=663, unified test
5036 format}. @code{craml} is released as a single binary (called @code{craml}).")
5037 (license license:isc)))
5038
5039 (define-public ocaml-dot-merlin-reader
5040 (package
5041 (name "ocaml-dot-merlin-reader")
5042 (version "4.5-414")
5043 (source
5044 (origin
5045 (method git-fetch)
5046 (uri (git-reference
5047 (url "https://github.com/ocaml/merlin")
5048 (commit (string-append "v" version))))
5049 (file-name (git-file-name name version))
5050 (sha256
5051 (base32
5052 "125gyk63fg9plqkyrkl3wvpr3czjxgvshf4496fc4swldl7z587c"))))
5053 (build-system dune-build-system)
5054 (arguments '(#:package "dot-merlin-reader"
5055 #:tests? #f)) ; no tests
5056 (inputs
5057 (list ocaml-yojson ocaml-csexp ocaml-result))
5058 (home-page "https://ocaml.github.io/merlin/")
5059 (synopsis "Reads config files for @code{ocaml-merlin}")
5060 (description "@code{ocaml-dot-merlin-reader} is an external reader for
5061 @code{ocaml-merlin} configurations.")
5062 (license license:expat)))
5063
5064 (define-public ocaml-merlin
5065 (package
5066 (inherit ocaml-dot-merlin-reader)
5067 (name "ocaml-merlin")
5068 (arguments
5069 '(#:package "merlin"
5070 #:phases
5071 (modify-phases %standard-phases
5072 (replace 'check
5073 (lambda* (#:key tests? #:allow-other-keys)
5074 (when tests?
5075 (invoke "dune" "runtest" "-p" "merlin,dot-merlin-reader")))))))
5076 (inputs
5077 (list ocaml-yojson ocaml-csexp ocaml-result))
5078 (native-inputs
5079 (list ocaml-dot-merlin-reader ; required for tests
5080 ocaml-mdx jq))
5081 (synopsis "Context sensitive completion for OCaml in Vim and Emacs")
5082 (description "Merlin is an editor service that provides modern IDE
5083 features for OCaml. Emacs and Vim support is provided out-of-the-box.
5084 External contributors added support for Visual Studio Code, Sublime Text and
5085 Atom.")
5086 (license license:expat)))
5087
5088 (define-public ocaml-gsl
5089 (package
5090 (name "ocaml-gsl")
5091 (version "1.24.0")
5092 (source
5093 (origin
5094 (method url-fetch)
5095 (uri
5096 (string-append
5097 "https://github.com/mmottl/gsl-ocaml/releases/download/"
5098 version "/gsl-" version ".tbz"))
5099 (sha256
5100 (base32
5101 "1l5zkkkg8sglsihrbf10ivq9s8xzl1y6ag89i4jqpnmi4m43fy34"))))
5102 (build-system dune-build-system)
5103 (arguments
5104 `(#:test-target "."
5105 #:phases
5106 (modify-phases %standard-phases
5107 (add-after 'unpack 'fix-gsl-directory
5108 (lambda* (#:key inputs #:allow-other-keys)
5109 (substitute* "src/config/discover.ml"
5110 (("/usr") (assoc-ref inputs "gsl"))))))))
5111 (inputs
5112 (list gsl))
5113 (propagated-inputs
5114 (list ocaml-base ocaml-stdio))
5115 (home-page "https://mmottl.github.io/gsl-ocaml")
5116 (synopsis "Bindings to the GNU Scientific Library")
5117 (description
5118 "GSL-OCaml is an interface to the @dfn{GNU scientific library} (GSL) for
5119 the OCaml language.")
5120 (license license:gpl3+)))
5121
5122 (define-public ocaml4.07-gsl-1
5123 (package-with-ocaml4.07
5124 (package
5125 (inherit ocaml-gsl)
5126 (version "1.19.3")
5127 (source (origin
5128 (method url-fetch)
5129 (uri (string-append "https://github.com/mmottl/gsl-ocaml"
5130 "/releases/download/v"
5131 version "/gsl-ocaml-" version ".tar.gz"))
5132 (sha256
5133 (base32
5134 "0nzp43hp8pbjqkrxnwp5lgjrabxayf61h18fjaydi0s5faq6f3xh"))))
5135 (build-system ocaml-build-system)
5136 (inputs
5137 `(("gsl" ,gsl-static)))
5138 (native-inputs
5139 `(("ocamlbuild" ,ocamlbuild)))
5140 (arguments '())
5141 (propagated-inputs '()))))
5142
5143 (define-public cubicle
5144 (package
5145 (name "cubicle")
5146 (version "1.1.2")
5147 (source (origin
5148 (method url-fetch)
5149 (uri (string-append "http://cubicle.lri.fr/cubicle-"
5150 version ".tar.gz"))
5151 (sha256
5152 (base32
5153 "10kk80jdmpdvql88sdjsh7vqzlpaphd8vip2lp47aarxjkwjlz1q"))))
5154 (build-system gnu-build-system)
5155 (native-inputs
5156 (list automake ocaml
5157 (@@ (gnu packages base) which)))
5158 (propagated-inputs
5159 (list ocaml-num z3))
5160 (arguments
5161 `(#:configure-flags (list "--with-z3")
5162 #:make-flags (list "QUIET=")
5163 #:tests? #f
5164 #:phases
5165 (modify-phases %standard-phases
5166 (add-before 'configure 'make-deterministic
5167 (lambda _
5168 (substitute* "Makefile.in"
5169 (("`date`") "no date for reproducibility"))))
5170 (add-before 'configure 'configure-for-release
5171 (lambda _
5172 (substitute* "Makefile.in"
5173 (("SVNREV=") "#SVNREV="))
5174 #t))
5175 (add-before 'configure 'fix-/bin/sh
5176 (lambda _
5177 (substitute* "configure"
5178 (("-/bin/sh") (string-append "-" (which "sh"))))
5179 #t))
5180 (add-before 'configure 'fix-smt-z3wrapper.ml
5181 (lambda _
5182 (substitute* "Makefile.in"
5183 (("\\\\n") ""))
5184 #t))
5185 (add-before 'configure 'fix-ocaml-num
5186 (lambda* (#:key inputs #:allow-other-keys)
5187 (substitute* "Makefile.in"
5188 (("nums.cma") "num.cma num_core.cma")
5189 (("= \\$\\(FUNCTORYLIB\\)")
5190 (string-append "= -I "
5191 (assoc-ref inputs "ocaml-num")
5192 "/lib/ocaml/site-lib/num/core -I "
5193 (assoc-ref inputs "ocaml-num")
5194 "/lib/ocaml/site-lib/num"
5195 " $(FUNCTORYLIB)")))
5196 #t)))))
5197 (home-page "http://cubicle.lri.fr/")
5198 (synopsis "Model checker for array-based systems")
5199 (description "Cubicle is a model checker for verifying safety properties
5200 of array-based systems. This is a syntactically restricted class of
5201 parametrized transition systems with states represented as arrays indexed by
5202 an arbitrary number of processes. Cache coherence protocols and mutual
5203 exclusion algorithms are typical examples of such systems.")
5204 (license license:asl2.0)))
5205
5206 (define-public ocaml-sexplib0
5207 (package
5208 (name "ocaml-sexplib0")
5209 (version "0.15.1")
5210 (home-page "https://github.com/janestreet/sexplib0")
5211 (source (origin
5212 (method git-fetch)
5213 (uri (git-reference
5214 (url home-page)
5215 (commit (string-append "v" version))))
5216 (file-name (git-file-name name version))
5217 (sha256
5218 (base32
5219 "05m93g4m4jhj1v8pazg3s2ydcfymr3h4476yjhdca5fm4sn35bg8"))))
5220 (build-system dune-build-system)
5221 (arguments `(#:tests? #f)) ;no tests
5222 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-sexplib0))))
5223 (synopsis "Library containing the definition of S-expressions and some
5224 base converters")
5225 (description "Part of Jane Street's Core library The Core suite of
5226 libraries is an industrial strength alternative to OCaml's standard library
5227 that was developed by Jane Street, the largest industrial user of OCaml.")
5228 (license license:expat)))
5229
5230 (define-public ocaml4.07-sexplib0
5231 (package-with-ocaml4.07
5232 (package
5233 (inherit ocaml-sexplib0)
5234 (name "ocaml-sexplib0")
5235 (version "0.11.0")
5236 (source
5237 (janestreet-origin "sexplib0" version
5238 "1p06p2s7p9xsjn0z9qicniv1ai54d8sj11k8j633di2mm7jzxpin"))
5239 (arguments `(#:tests? #f)) ; no tests
5240 (properties '()))))
5241
5242 (define-public ocaml-parsexp
5243 (package
5244 (name "ocaml-parsexp")
5245 (version "0.15.0")
5246 (home-page "https://github.com/janestreet/parsexp")
5247 (source (origin
5248 (method git-fetch)
5249 (uri (git-reference
5250 (url home-page)
5251 (commit (string-append "v" version))))
5252 (file-name (git-file-name name version))
5253 (sha256
5254 (base32
5255 "1grzpxi39318vcqhwf723hqh11k68irh59zb3dyg9lw8wjn7752a"))))
5256 (build-system dune-build-system)
5257 (inputs
5258 (list ocaml-sexplib0 ocaml-base))
5259 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-parsexp))))
5260 (synopsis "S-expression parsing library")
5261 (description
5262 "This library provides generic parsers for parsing S-expressions from
5263 strings or other medium.
5264
5265 The library is focused on performances but still provide full generic
5266 parsers that can be used with strings, bigstrings, lexing buffers,
5267 character streams or any other sources effortlessly.
5268
5269 It provides three different class of parsers:
5270 @itemize
5271 @item
5272 the normal parsers, producing [Sexp.t] or [Sexp.t list] values
5273 @item
5274 the parsers with positions, building compact position sequences so
5275 that one can recover original positions in order to report properly
5276 located errors at little cost
5277 @item
5278 the Concrete Syntax Tree parsers, produce values of type
5279 @code{Parsexp.Cst.t} which record the concrete layout of the s-expression
5280 syntax, including comments
5281 @end itemize
5282
5283 This library is portable and doesn't provide IO functions. To read
5284 s-expressions from files or other external sources, you should use
5285 parsexp_io.")
5286 (license license:expat)))
5287
5288 (define-public ocaml4.07-parsexp
5289 (package-with-ocaml4.07
5290 (package
5291 (inherit ocaml-parsexp)
5292 (name "ocaml-parsexp")
5293 (version "0.11.0")
5294 (source
5295 (janestreet-origin "parsexp" version
5296 "11a30zkfgbi6pb4whq22k1zc8ghdp9bwxl5s5cdlmx1z8s4yxsf0"))
5297 (properties '()))))
5298
5299 (define-public ocaml-sexplib
5300 (package
5301 (name "ocaml-sexplib")
5302 (version "0.15.0")
5303 (home-page "https://github.com/janestreet/sexplib")
5304 (source
5305 (janestreet-origin "sexplib" version
5306 "1xs55f11yhscnfrzpvy1vn05j6xi9kxy097465624l615j7k8qm5"))
5307 (build-system dune-build-system)
5308 (propagated-inputs
5309 (list ocaml-base ocaml-num ocaml-parsexp ocaml-sexplib0))
5310 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-sexplib))))
5311 (synopsis
5312 "Library for serializing OCaml values to and from S-expressions")
5313 (description
5314 "This package is part of Jane Street's Core library. Sexplib contains
5315 functionality for parsing and pretty-printing s-expressions.")
5316 (license license:expat)))
5317
5318 (define-public ocaml4.07-sexplib
5319 (package-with-ocaml4.07
5320 (package
5321 (inherit ocaml-sexplib)
5322 (version "0.11.0")
5323 (source
5324 (janestreet-origin "sexplib" version
5325 "0ksx62zsxhz8xmdrsn41n2hbc2qbyh3bxxc6946xisvgwh42h3q3"))
5326 (properties '()))))
5327
5328 (define-public ocaml-base
5329 (package
5330 (name "ocaml-base")
5331 (version "0.15.0")
5332 (home-page "https://github.com/janestreet/base")
5333 (source
5334 (origin
5335 (method git-fetch)
5336 (uri (git-reference
5337 (url "https://github.com/janestreet/base")
5338 (commit (string-append "v" version))))
5339 (file-name (git-file-name name version))
5340 (sha256
5341 (base32
5342 "1qyycqqr4dijvxm4hhy79c964wd91kpsfvb89kna1qwgllg0hrpj"))))
5343 (build-system dune-build-system)
5344 (propagated-inputs
5345 (list ocaml-sexplib0))
5346 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-base))))
5347 (synopsis
5348 "Full standard library replacement for OCaml")
5349 (description
5350 "Base is a complete and portable alternative to the OCaml standard
5351 library. It provides all standard functionalities one would expect
5352 from a language standard library. It uses consistent conventions
5353 across all of its module.
5354
5355 Base aims to be usable in any context. As a result system dependent
5356 features such as I/O are not offered by Base. They are instead
5357 provided by companion libraries such as
5358 @url{https://github.com/janestreet/stdio, ocaml-stdio}.")
5359 (license license:expat)))
5360
5361 (define-public ocaml4.07-base
5362 (package-with-ocaml4.07
5363 (package
5364 (inherit ocaml-base)
5365 (name "ocaml-base")
5366 (version "0.11.1")
5367 (source
5368 (origin
5369 ;; version 0.11.1 is not released on ocaml.janestreet.org.
5370 (method git-fetch)
5371 (uri (git-reference
5372 (url "https://github.com/janestreet/base.git")
5373 (commit (string-append "v" version))))
5374 (file-name (git-file-name name version))
5375 (sha256
5376 (base32
5377 "0j6xb4265jr41vw4fjzak6yr8s30qrnzapnc6rl1dxy8bjai0nir"))))
5378 (properties '()))))
5379
5380 (define-public ocaml-compiler-libs
5381 (package
5382 (name "ocaml-compiler-libs")
5383 (version "0.12.4")
5384 (home-page "https://github.com/janestreet/ocaml-compiler-libs")
5385 (source
5386 (origin
5387 (method git-fetch)
5388 (uri (git-reference
5389 (url home-page)
5390 (commit (string-append "v" version))))
5391 (file-name (git-file-name name version))
5392 (sha256
5393 (base32
5394 "00if2f7j9d8igdkj4rck3p74y17j6b233l91mq02drzrxj199qjv"))))
5395 (build-system dune-build-system)
5396 (arguments `(#:tests? #f)) ;no tests
5397 (properties `((upstream-name . "ocaml-compiler-libs")
5398 (ocaml4.07-variant . ,(delay ocaml4.07-compiler-libs))))
5399 (synopsis "Compiler libraries repackaged")
5400 (description "This package simply repackages the OCaml compiler libraries
5401 so they don't expose everything at toplevel. For instance, @code{Ast_helper}
5402 is now @code{Ocaml_common.Ast_helper}.")
5403 (license license:expat)))
5404
5405 (define-public ocaml4.07-compiler-libs
5406 (package-with-ocaml4.07
5407 (package
5408 (inherit ocaml-compiler-libs)
5409 (name "ocaml-compiler-libs")
5410 (version "0.11.0")
5411 (home-page "https://github.com/janestreet/ocaml-compiler-libs")
5412 (source
5413 (origin
5414 (method git-fetch)
5415 (uri (git-reference
5416 (url home-page)
5417 (commit (string-append "v" version))))
5418 (file-name (git-file-name name version))
5419 (sha256
5420 (base32
5421 "03jds7bszh8wwpfwxb3dg0gyr1j1872wxwx1xqhry5ir0i84bg0s"))))
5422 (properties `((upstream-name . "ocaml-compiler-libs"))))))
5423
5424 (define-public ocaml-stdio
5425 (package
5426 (name "ocaml-stdio")
5427 (version "0.15.0")
5428 (home-page "https://github.com/janestreet/stdio")
5429 (source
5430 (janestreet-origin "stdio" version
5431 "0jsyg4jlp76d9gx1fngms6nfs7dcpsysdsvkywjq9a663n994wn3"))
5432 (build-system dune-build-system)
5433 (propagated-inputs
5434 (list ocaml-base ocaml-sexplib0))
5435 (arguments `(#:tests? #f)) ;no tests
5436 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-stdio))))
5437 (synopsis "Standard IO library for OCaml")
5438 (description
5439 "Stdio implements simple input/output functionalities for OCaml. It
5440 re-exports the input/output functions of the OCaml standard libraries using
5441 a more consistent API.")
5442 (license license:expat)))
5443
5444 (define-public ocaml4.07-stdio
5445 (package-with-ocaml4.07
5446 (package
5447 (inherit ocaml-stdio)
5448 (version "0.11.0")
5449 (source
5450 (janestreet-origin "stdio" version
5451 "0pqbp2wy5fgmc38irwvmj9nlcvclb1ix1mp4y7l39bgvvlz303h9"))
5452 (properties '()))))
5453
5454 (define-public ocaml-ppx-deriving
5455 (package
5456 (name "ocaml-ppx-deriving")
5457 (version "5.2.1")
5458 (source
5459 (origin
5460 (method git-fetch)
5461 (uri (git-reference
5462 (url "https://github.com/ocaml-ppx/ppx_deriving")
5463 (commit (string-append "v" version))))
5464 (file-name (git-file-name name version))
5465 (sha256
5466 (base32
5467 "1wqcnw4wi6pfjjhixpakckm03dpj990259za432804471a6spm2j"))))
5468 (build-system dune-build-system)
5469 (arguments
5470 `(#:test-target "."))
5471 (propagated-inputs
5472 (list ocaml-ppx-derivers ocaml-ppxlib ocaml-result))
5473 (native-inputs
5474 (list ocaml-cppo ocaml-ounit2))
5475 (properties `((upstream-name . "ppx_deriving")))
5476 (home-page "https://github.com/ocaml-ppx/ppx_deriving")
5477 (synopsis "Type-driven code generation for OCaml")
5478 (description
5479 "Ppx_deriving provides common infrastructure for generating code based
5480 on type definitions, and a set of useful plugins for common tasks.")
5481 (license license:expat)))
5482
5483 (define-public ocaml-ppx-derivers
5484 (package
5485 (name "ocaml-ppx-derivers")
5486 (version "1.2.1")
5487 (home-page
5488 "https://github.com/ocaml-ppx/ppx_derivers")
5489 (source
5490 (origin
5491 (method git-fetch)
5492 (uri (git-reference
5493 (url (string-append home-page ".git"))
5494 (commit version)))
5495 (file-name (git-file-name name version))
5496 (sha256
5497 (base32
5498 "0yqvqw58hbx1a61wcpbnl9j30n495k23qmyy2xwczqs63mn2nkpn"))))
5499 (build-system dune-build-system)
5500 (arguments
5501 '(#:tests? #f)) ;no tests
5502 (properties `((upstream-name . "ppx_derivers")))
5503 (synopsis "Shared @code{@@deriving} plugin registry")
5504 (description
5505 "Ppx_derivers is a tiny package whose sole purpose is to allow
5506 ppx_deriving and ppx_type_conv to inter-operate gracefully when linked
5507 as part of the same ocaml-migrate-parsetree driver.")
5508 (license license:bsd-3)))
5509
5510 (define-public ocaml-ppxlib
5511 (package
5512 (name "ocaml-ppxlib")
5513 (version "0.25.0")
5514 (home-page "https://github.com/ocaml-ppx/ppxlib")
5515 (source
5516 (origin
5517 (method git-fetch)
5518 (uri (git-reference
5519 (url home-page)
5520 (commit version)))
5521 (file-name (git-file-name name version))
5522 (sha256
5523 (base32
5524 "0wlqvyqy9ccp7z981blv42aqwq7zfq93cakbahjyy48hiiir6vp2"))))
5525 (build-system dune-build-system)
5526 (arguments
5527 `(#:phases
5528 (modify-phases %standard-phases
5529 (add-after 'unpack 'fix-test-format
5530 (lambda _
5531 ;; Since sexplib >= 0.15, error formating has changed
5532 (substitute* "test/driver/exception_handling/run.t"
5533 (("\\(Failure ") "Failure("))
5534 (substitute* "test/base/test.ml"
5535 (("Invalid_argument \\((.*)\\)." _ m)
5536 (string-append "Invalid_argument " m "."))
5537 (("\\(Invalid_argument (.*)\\)" _ m)
5538 (string-append "Invalid_argument " m ".")))
5539 (substitute* "test/ppx_import_support/test.ml"
5540 (("\\(Failure") "Failure")
5541 ((" \"(Some ppx-es.*)\")" _ m)
5542 (string-append " \"" m "\"."))))))))
5543 (propagated-inputs
5544 (list ocaml-base
5545 ocaml-compiler-libs
5546 ocaml-migrate-parsetree
5547 ocaml-stdlib-shims
5548 ocaml-ppx-derivers
5549 ocaml-stdio
5550 ocaml-result
5551 ocaml-sexplib0))
5552 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-ppxlib))))
5553 (synopsis
5554 "Base library and tools for ppx rewriters")
5555 (description
5556 "A comprehensive toolbox for ppx development. It features:
5557 @itemize
5558 @item an OCaml AST / parser / pretty-printer snapshot, to create a full frontend
5559 independent of the version of OCaml;
5560 @item a library for library for ppx rewriters in general, and type-driven code
5561 generators in particular;
5562 @item
5563 a feature-full driver for OCaml AST transformers;
5564 @item a quotation mechanism allowing to write values representing the
5565 OCaml AST in the OCaml syntax;
5566 @item a generator of open recursion classes from type definitions.
5567 @end itemize")
5568 (license license:expat)))
5569
5570 (define-public ocaml4.07-ppxlib
5571 (package-with-ocaml4.07
5572 (package
5573 (inherit ocaml-ppxlib)
5574 (name "ocaml-ppxlib")
5575 (version "0.6.0")
5576 (home-page "https://github.com/ocaml-ppx/ppxlib")
5577 (source
5578 (origin
5579 (method git-fetch)
5580 (uri (git-reference
5581 (url home-page)
5582 (commit version)))
5583 (file-name (git-file-name name version))
5584 (sha256
5585 (base32
5586 "0my9x7sxb329h0lzshppdaawiyfbaw6g5f41yiy7bhl071rnlvbv"))))
5587 (build-system dune-build-system)
5588 (arguments
5589 `(#:phases
5590 (modify-phases %standard-phases
5591 (add-before 'check 'set-topfind
5592 (lambda* (#:key inputs #:allow-other-keys)
5593 ;; add the line #directory ".." at the top of each file
5594 ;; using #use "topfind";; to be able to find topfind
5595 (let* ((findlib-path (assoc-ref inputs "findlib"))
5596 (findlib-libdir
5597 (string-append findlib-path "/lib/ocaml/site-lib")))
5598 (substitute* '("test/base/test.ml"
5599 "test/code_path/test.ml"
5600 "test/deriving/test.ml"
5601 "test/driver/attributes/test.ml"
5602 "test/driver/non-compressible-suffix/test.ml"
5603 "test/driver/transformations/test.ml")
5604 (("#use \"topfind\";;" all)
5605 (string-append "#directory \"" findlib-libdir "\"\n"
5606 all))))
5607 #t)))))
5608 (properties '()))))
5609
5610 (define-public ocaml-ppx-compare
5611 (package
5612 (name "ocaml-ppx-compare")
5613 (version "0.15.0")
5614 (source
5615 (janestreet-origin "ppx_compare" version
5616 "11bkw7fgzfay8ws0piwphqip3y2lk2c9s2gil3zisnbvka92h1va"))
5617 (build-system dune-build-system)
5618 (arguments
5619 ;; Tests are currenlty failing
5620 ;; (see https://github.com/janestreet/ppx_compare/issues/10)
5621 '(#:tests? #f))
5622 (propagated-inputs
5623 (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
5624 (properties `((upstream-name . "ppx_compare")
5625 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-compare))))
5626 (home-page "https://github.com/janestreet/ppx_compare")
5627 (synopsis "Generation of comparison functions from types")
5628 (description "Generation of fast comparison functions from type expressions
5629 and definitions. Ppx_compare is a ppx rewriter that derives comparison functions
5630 from type representations. The scaffolded functions are usually much faster
5631 than ocaml's Pervasives.compare. Scaffolding functions also gives you more
5632 flexibility by allowing you to override them for a specific type and more safety
5633 by making sure that you only compare comparable values.")
5634 (license license:asl2.0)))
5635
5636 (define-public ocaml4.07-ppx-compare
5637 (package-with-ocaml4.07
5638 (package
5639 (inherit ocaml-ppx-compare)
5640 (name "ocaml-ppx-compare")
5641 (version "0.11.1")
5642 (home-page "https://github.com/janestreet/ppx_compare")
5643 (source (origin
5644 (method git-fetch)
5645 (uri (git-reference
5646 (url home-page)
5647 (commit (string-append "v" version))))
5648 (file-name (git-file-name name version))
5649 (sha256
5650 (base32
5651 "06bq4m1bsm4jlx4g7wh5m99qky7xm4c2g52kaz6pv25hdn5agi2m"))))
5652 (properties `((upstream-name . "ppx_compare"))))))
5653
5654 (define-public ocaml-fieldslib
5655 (package
5656 (name "ocaml-fieldslib")
5657 (version "0.15.0")
5658 (source (janestreet-origin
5659 "fieldslib" version
5660 "083izf854vzmi5zj63r7ipjf09y1dqf7iy8n6r4663444xrzs2h5"))
5661 (build-system dune-build-system)
5662 (arguments `(#:tests? #f)) ; No tests
5663 (propagated-inputs
5664 (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
5665 (properties `((upstream-name . "fieldslib")
5666 (ocaml4.07-variant . ,(delay ocaml4.07-fieldslib))))
5667 (home-page "https://github.com/janestreet/fieldslib")
5668 (synopsis "Syntax extension to record fields")
5669 (description "Syntax extension to define first class values representing
5670 record fields, to get and set record fields, iterate and fold over all fields
5671 of a record and create new record values.")
5672 (license license:asl2.0)))
5673
5674 (define-public ocaml4.07-fieldslib
5675 (package-with-ocaml4.07
5676 (package
5677 (inherit ocaml-fieldslib)
5678 (version "0.11.0")
5679 (source (janestreet-origin
5680 "fieldslib" version
5681 "12948pzxrl360lybm9fzyvplgcl87zjbn4m3sk1aw75zk85p1388"))
5682 (properties `((upstream-name . "fieldslib"))))))
5683
5684 (define-public ocaml-variantslib
5685 (package
5686 (name "ocaml-variantslib")
5687 (version "0.15.0")
5688 (source
5689 (janestreet-origin "variantslib" version
5690 "12dssx4by6rgjzfrvksz83hkcpmsq0brn87dh22pv1rrwhw79n75"))
5691 (build-system dune-build-system)
5692 (arguments
5693 ;; No tests
5694 `(#:tests? #f))
5695 (propagated-inputs
5696 (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
5697 (properties `((upstream-name . "variantslib")
5698 (ocaml4.07-variant . ,(delay ocaml4.07-variantslib))))
5699 (home-page "https://github.com/janestreet/variantslib")
5700 (synopsis "OCaml variants as first class values")
5701 (description "The Core suite of libraries is an alternative to OCaml's
5702 standard library.")
5703 (license license:asl2.0)))
5704
5705 (define-public ocaml4.07-variantslib
5706 (package-with-ocaml4.07
5707 (package
5708 (inherit ocaml-variantslib)
5709 (name "ocaml-variantslib")
5710 (version "0.11.0")
5711 (source (origin
5712 (method url-fetch)
5713 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
5714 (version-major+minor version)
5715 "/files/variantslib-v" version ".tar.gz"))
5716 (sha256
5717 (base32
5718 "1hsdwmkslvk4cznqr4lyyiy7vvk5spil226k0z2in26fxq6y0hf3"))))
5719 (properties `((upstream-name . "variantslib"))))))
5720
5721 (define-public ocaml-ppx-fields-conv
5722 (package
5723 (name "ocaml-ppx-fields-conv")
5724 (version "0.15.0")
5725 (home-page "https://github.com/janestreet/ppx_fields_conv")
5726 (source
5727 (origin
5728 (method git-fetch)
5729 (uri (git-reference
5730 (url home-page)
5731 (commit (string-append "v" version))))
5732 (file-name (git-file-name name version))
5733 (sha256
5734 (base32
5735 "094wsnw7fcwgl9xg6vkjb0wbgpn9scsp847yhdd184sz9v1amz14"))))
5736 (build-system dune-build-system)
5737 (propagated-inputs
5738 (list ocaml-base ocaml-fieldslib ocaml-migrate-parsetree
5739 ocaml-ppxlib))
5740 (properties `((upstream-name . "ppx_fields_conv")
5741 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-fields-conv))))
5742 (synopsis "Generation of accessor and iteration functions for ocaml records")
5743 (description "Ppx_fields_conv is a ppx rewriter that can be used to define
5744 first class values representing record fields, and additional routines, to get
5745 and set record fields, iterate and fold over all fields of a record and create
5746 new record values.")
5747 (license license:asl2.0)))
5748
5749 (define-public ocaml4.07-ppx-fields-conv
5750 (package-with-ocaml4.07
5751 (package
5752 (inherit ocaml-ppx-fields-conv)
5753 (version "0.11.0")
5754 (source (janestreet-origin
5755 "ppx_fields_conv" version
5756 "07zrd3qky2ppbfl55gpm90rvqa5860xgwcsvihrjmkrw6d0jirkc"))
5757 (properties `((upstream-name . "ppx_fields_conv"))))))
5758
5759 (define-public ocaml-ppx-sexp-conv
5760 (package
5761 (name "ocaml-ppx-sexp-conv")
5762 (version "0.15.0")
5763 (home-page "https://github.com/janestreet/ppx_sexp_conv")
5764 (source
5765 (origin
5766 (method git-fetch)
5767 (uri (git-reference
5768 (url home-page)
5769 (commit (string-append "v" version))))
5770 (file-name (git-file-name name version))
5771 (sha256
5772 (base32
5773 "1fyf7hgxprn7pj58rmmrfpv938a0avpzvvk6wzihpmfm6whgbdm8"))))
5774 (build-system dune-build-system)
5775 (propagated-inputs
5776 (list ocaml-base ocaml-ppxlib))
5777 (properties `((upstream-name . "ppx_sexp_conv")
5778 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-sexp-conv))))
5779 (synopsis "Generation of S-expression conversion functions from type definitions")
5780 (description "This package generates S-expression conversion functions from type
5781 definitions.")
5782 (license license:asl2.0)))
5783
5784 (define-public ocaml4.07-ppx-sexp-conv
5785 (package-with-ocaml4.07
5786 (package
5787 (inherit ocaml-ppx-sexp-conv)
5788 (name "ocaml-ppx-sexp-conv")
5789 (version "0.11.2")
5790 (source (origin
5791 (method git-fetch)
5792 (uri (git-reference
5793 (url "https://github.com/janestreet/ppx_sexp_conv")
5794 (commit (string-append "v" version))))
5795 (file-name (git-file-name name version))
5796 (sha256
5797 (base32
5798 "0pqwnqy1xp309wvdcaax4lg02yk64lq2w03mbgfvf6ps5ry4gis9"))))
5799 (properties `((upstream-name . "ppx_sexp_conv"))))))
5800
5801 (define-public ocaml-ppx-variants-conv
5802 (package
5803 (name "ocaml-ppx-variants-conv")
5804 (version "0.15.0")
5805 (source
5806 (origin
5807 (method git-fetch)
5808 (uri (git-reference
5809 (url "https://github.com/janestreet/ppx_variants_conv")
5810 (commit (string-append "v" version))))
5811 (file-name (git-file-name name version))
5812 (sha256
5813 (base32
5814 "1dh0bw9dn246k00pymf59yjkl6x6bxd76lkk9b5xpq2692wwlc3s"))))
5815 (build-system dune-build-system)
5816 (propagated-inputs
5817 (list ocaml-base ocaml-variantslib ocaml-migrate-parsetree
5818 ocaml-ppxlib))
5819 (properties
5820 `((upstream-name . "ppx_variants_conv")
5821 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-variants-conv))))
5822 (home-page
5823 "https://github.com/janestreet/ppx_variants_conv")
5824 (synopsis "Generation of accessor and iteration functions for OCaml variant types")
5825 (description
5826 "This package generates accessors and iteration functions for OCaml
5827 variant types.")
5828 (license license:asl2.0)))
5829
5830 (define-public ocaml4.07-ppx-variants-conv
5831 (package-with-ocaml4.07
5832 (package
5833 (inherit ocaml-ppx-variants-conv)
5834 (name "ocaml-ppx-variants-conv")
5835 (version "0.11.1")
5836 (source
5837 (origin
5838 (method git-fetch)
5839 (uri (git-reference
5840 (url "https://github.com/janestreet/ppx_variants_conv")
5841 (commit (string-append "v" version))))
5842 (file-name (git-file-name name version))
5843 (sha256
5844 (base32
5845 "1yc0gsds5m2nv39zga8nnrca2n75rkqy5dz4xj1635ybz20hhbjd"))))
5846 (properties `((upstream-name . "ppx_variants_conv"))))))
5847
5848 (define-public ocaml-ppx-custom-printf
5849 (package
5850 (name "ocaml-ppx-custom-printf")
5851 (version "0.15.0")
5852 (home-page "https://github.com/janestreet/ppx_custom_printf")
5853 (source
5854 (origin
5855 (method git-fetch)
5856 (uri (git-reference
5857 (url home-page)
5858 (commit (string-append "v" version))))
5859 (file-name (git-file-name name version))
5860 (sha256
5861 (base32
5862 "1k8nmq6kwqz2wpkm9ymq749dz1vd8lxrjc711knp1wyz5935hnsv"))))
5863 (build-system dune-build-system)
5864 (propagated-inputs
5865 (list ocaml-base ocaml-ppx-sexp-conv ocaml-migrate-parsetree
5866 ocaml-ppxlib))
5867 (properties `((upstream-name . "ppx_custom_printf")
5868 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-custom-printf))))
5869 (synopsis "Printf-style format-strings for user-defined string conversion")
5870 (description "Extensions to printf-style format-strings for user-defined
5871 string conversion.")
5872 (license license:asl2.0)))
5873
5874 (define-public ocaml4.07-ppx-custom-printf
5875 (package-with-ocaml4.07
5876 (package
5877 (inherit ocaml-ppx-custom-printf)
5878 (version "0.11.0")
5879 (source
5880 (janestreet-origin
5881 "ppx_custom_printf" version
5882 "11b73smf3g3bpd9lg014pr4rx285nk9mnk6g6464ph51jv0sqzhj"))
5883 (properties `((upstream-name . "ppx_custom_printf"))))))
5884
5885 (define-public ocaml-bin-prot
5886 (package
5887 (name "ocaml-bin-prot")
5888 (version "0.15.0")
5889 (source
5890 (origin
5891 (method git-fetch)
5892 (uri (git-reference
5893 (url "https://github.com/janestreet/bin_prot")
5894 (commit (string-append "v" version))))
5895 (file-name (git-file-name name version))
5896 (sha256
5897 (base32 "1qfqglscc25wwnjx7byqmjcnjww1msnr8940gyg8h93wdq43fjnh"))))
5898 (build-system dune-build-system)
5899 (propagated-inputs
5900 (list ocaml-base
5901 ocaml-ppx-compare
5902 ocaml-ppx-custom-printf
5903 ocaml-ppx-fields-conv
5904 ocaml-ppx-optcomp
5905 ocaml-ppx-sexp-conv
5906 ocaml-ppx-variants-conv))
5907 (properties `((upstream-name . "bin_prot")
5908 (ocaml4.07-variant . ,(delay ocaml4.07-bin-prot))))
5909 (home-page "https://github.com/janestreet/bin_prot")
5910 (synopsis "Binary protocol generator")
5911 (description "This library contains functionality for reading and writing
5912 OCaml-values in a type-safe binary protocol. It is extremely efficient,
5913 typically supporting type-safe marshalling and unmarshalling of even highly
5914 structured values at speeds sufficient to saturate a gigabit connection. The
5915 protocol is also heavily optimized for size, making it ideal for long-term
5916 storage of large amounts of data.")
5917 (license license:expat)))
5918
5919 (define-public ocaml4.07-bin-prot
5920 (package-with-ocaml4.07
5921 (package
5922 (inherit ocaml-bin-prot)
5923 (version "0.11.0")
5924 (source (origin
5925 (method url-fetch)
5926 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
5927 (version-major+minor version)
5928 "/files/bin_prot-v" version ".tar.gz"))
5929 (sha256
5930 (base32
5931 "1rsd91gx36prj4whi76nsiz1bzpgal9nzyw3pxdz1alv4ilk2il6"))))
5932 (propagated-inputs (list ocaml-base
5933 ocaml-ppx-compare
5934 ocaml-ppx-custom-printf
5935 ocaml-ppx-fields-conv
5936 ocaml-ppx-variants-conv
5937 ocaml-migrate-parsetree))
5938 (properties '())
5939 (license (list
5940 license:asl2.0
5941 license:bsd-3)))))
5942
5943 (define-public ocaml-octavius
5944 (package
5945 (name "ocaml-octavius")
5946 (version "1.2.2")
5947 (source (origin
5948 (method git-fetch)
5949 (uri (git-reference
5950 (url "https://github.com/ocaml-doc/octavius")
5951 (commit (string-append "v" version))))
5952 (file-name (git-file-name name version))
5953 (sha256
5954 (base32
5955 "1c5m51xcn2jv42kjjpklr6g63sgx1k885wfdp1yr4wrmiaj9cbpx"))))
5956 (build-system dune-build-system)
5957 (arguments
5958 `(#:phases
5959 (modify-phases %standard-phases
5960 (add-before 'build 'make-writable
5961 (lambda _
5962 (for-each (lambda (file)
5963 (chmod file #o644))
5964 (find-files "." "."))
5965 #t)))))
5966 (properties `((upstream-name . "octavius")))
5967 (home-page "https://github.com/ocaml-doc/octavius")
5968 (synopsis "Ocamldoc comment syntax parser")
5969 (description "Octavius is a library to parse the `ocamldoc` comment syntax.")
5970 (license license:isc)))
5971
5972 (define-public ocaml-sha
5973 (package
5974 (name "ocaml-sha")
5975 (version "1.15.2")
5976 (source (origin
5977 (method url-fetch)
5978 (uri (string-append "https://github.com/djs55/ocaml-sha/releases/download/"
5979 version "/sha-" version ".tbz"))
5980 (sha256
5981 (base32
5982 "1dzzhchknnbrpp5s81iqbvmqp4s0l75yrq8snj70ch3wkarmgg9z"))))
5983 (build-system dune-build-system)
5984 (propagated-inputs (list ocaml-stdlib-shims ocaml-odoc))
5985 (native-inputs (list ocaml-ounit2))
5986 (home-page "https://github.com/djs55/ocaml-sha")
5987 (synopsis "OCaml binding to the SHA cryptographic functions")
5988 (description
5989 "This is the binding for SHA interface code in OCaml, offering the same
5990 interface as the MD5 digest included in the OCaml standard library. It
5991 currently provides SHA1, SHA256 and SHA512 hash functions.")
5992 (license license:isc)))
5993
5994 (define-public ocaml-ppx-hash
5995 (package
5996 (name "ocaml-ppx-hash")
5997 (version "0.15.0")
5998 (source
5999 (janestreet-origin "ppx_hash" version
6000 "048pim0xicj8j9whd5lnchf62788sk3w89h12aybbalk1xm6dfs5"))
6001 (build-system dune-build-system)
6002 (propagated-inputs
6003 (list ocaml-base ocaml-ppx-compare ocaml-ppx-sexp-conv
6004 ocaml-migrate-parsetree ocaml-ppxlib))
6005 (properties `((upstream-name . "ppx_hash")
6006 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-hash))))
6007 (home-page "https://github.com/janestreet/ppx_hash")
6008 (synopsis "Generation of hash functions from type expressions and definitions")
6009 (description "This package is a collection of ppx rewriters that generate
6010 hash functions from type exrpessions and definitions.")
6011 (license license:asl2.0)))
6012
6013 (define-public ocaml4.07-ppx-hash
6014 (package-with-ocaml4.07
6015 (package
6016 (inherit ocaml-ppx-hash)
6017 (name "ocaml-ppx-hash")
6018 (home-page "https://github.com/janestreet/ppx_hash")
6019 (version "0.11.1")
6020 (source (origin
6021 (method git-fetch)
6022 (uri (git-reference
6023 (url home-page)
6024 (commit (string-append "v" version))))
6025 (file-name (git-file-name name version))
6026 (sha256
6027 (base32
6028 "1p0ic6aijxlrdggpmycj12q3cy9xksbq2vq727215maz4snvlf5p"))))
6029 (properties `((upstream-name . "ppx_hash"))))))
6030
6031 (define-public ocaml-ppx-enumerate
6032 (package
6033 (name "ocaml-ppx-enumerate")
6034 (version "0.15.0")
6035 (source
6036 (janestreet-origin
6037 "ppx_enumerate" version
6038 "16yhk3xk2hskmlspb6mikmdp60qaypyiqgq9p17kxpial6fgpdfy"))
6039 (build-system dune-build-system)
6040 (arguments
6041 `(#:tests? #f)) ; no test suite
6042 (propagated-inputs
6043 (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
6044 (properties `((upstream-name . "ppx_enumerate")
6045 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-enumerate))))
6046 (home-page "https://github.com/janestreet/ppx_enumerate")
6047 (synopsis "Generate a list containing all values of a finite type")
6048 (description "Ppx_enumerate is a ppx rewriter which generates a definition
6049 for the list of all values of a type (for a type which only has finitely
6050 many values).")
6051 (license license:asl2.0)))
6052
6053 (define-public ocaml4.07-ppx-enumerate
6054 (package-with-ocaml4.07
6055 (package
6056 (inherit ocaml-ppx-enumerate)
6057 (name "ocaml-ppx-enumerate")
6058 (version "0.11.1")
6059 (home-page "https://github.com/janestreet/ppx_enumerate")
6060 (source (origin
6061 (method git-fetch)
6062 (uri (git-reference
6063 (url home-page)
6064 (commit (string-append "v" version))))
6065 (file-name (git-file-name name version))
6066 (sha256
6067 (base32
6068 "0spx9k1v7vjjb6sigbfs69yndgq76v114jhxvzjmffw7q989cyhr"))))
6069 (properties `((upstream-name . "ppx_enumerate"))))))
6070
6071 (define-public ocaml-ppx-bench
6072 (package
6073 (name "ocaml-ppx-bench")
6074 (version "0.15.0")
6075 (source
6076 (origin
6077 (method git-fetch)
6078 (uri (git-reference
6079 (url "https://github.com/janestreet/ppx_bench")
6080 (commit (string-append "v" version))))
6081 (file-name (git-file-name name version))
6082 (sha256
6083 (base32 "0bc0gbm922417wqisafxh35jslcp7xy1s0h0a1q32rhx0ivxx3g6"))))
6084 (build-system dune-build-system)
6085 (arguments
6086 ;; No tests
6087 `(#:tests? #f))
6088 (propagated-inputs (list ocaml-ppx-inline-test ocaml-ppxlib))
6089 (properties `((upstream-name . "ppx_bench")
6090 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-bench))))
6091 (home-page "https://github.com/janestreet/ppx_bench")
6092 (synopsis "Syntax extension for writing in-line benchmarks in ocaml code")
6093 (description "Syntax extension for writing in-line benchmarks in ocaml code.")
6094 (license license:expat)))
6095
6096 (define-public ocaml4.07-ppx-bench
6097 (package-with-ocaml4.07
6098 (package
6099 (inherit ocaml-ppx-bench)
6100 (version "0.11.0")
6101 (source (origin
6102 (method url-fetch)
6103 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
6104 (version-major+minor version)
6105 "/files/ppx_bench-v" version ".tar.gz"))
6106 (sha256
6107 (base32
6108 "0ys4pblbcjbk9dn073rqiwm7r6rc7fah03j7riklkwnb5n44andl"))))
6109 (propagated-inputs
6110 (list ocaml-ppx-inline-test ocaml-migrate-parsetree ocaml-ppxlib))
6111 (properties '())
6112 (license license:asl2.0))))
6113
6114 (define-public ocaml-ppx-here
6115 (package
6116 (name "ocaml-ppx-here")
6117 (version "0.15.0")
6118 (source
6119 (janestreet-origin "ppx_here" version
6120 "1pyaw31j9n6r98ar947n3j2qj6rrszbdxr8jghk96j4ajdy05g65"))
6121 (build-system dune-build-system)
6122 (arguments
6123 ;; broken tests
6124 `(#:tests? #f))
6125 (propagated-inputs
6126 (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
6127 (properties `((upstream-name . "ppx_here")
6128 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-here))))
6129 (home-page "https://github.com/janestreet/ppx_here")
6130 (synopsis "Expands [%here] into its location")
6131 (description
6132 "Part of the Jane Street's PPX rewriters collection.")
6133 (license license:asl2.0)))
6134
6135 (define-public ocaml4.07-ppx-here
6136 (package-with-ocaml4.07
6137 (package
6138 (inherit ocaml-ppx-here)
6139 (version "0.11.0")
6140 (source
6141 (janestreet-origin "ppx_here" version
6142 "0wxcak3ay4jpigm3pfdcpr65qw4hxfa8whhkryhcd8gy71x056z5"))
6143 (properties `((upstream-name . "ppx_here"))))))
6144
6145 (define-public ocaml-typerep
6146 (package
6147 (name "ocaml-typerep")
6148 (version "0.15.0")
6149 (source
6150 (origin
6151 (method git-fetch)
6152 (uri (git-reference
6153 (url "https://github.com/janestreet/typerep")
6154 (commit (string-append "v" version))))
6155 (file-name (git-file-name name version))
6156 (sha256
6157 (base32 "1qxfi01qim0hrgd6d0bgvpxg36i99mmm8cw4wqpr9kxyqvgzv26z"))))
6158 (build-system dune-build-system)
6159 (arguments `(#:tests? #f)); no tests
6160 (propagated-inputs (list ocaml-base))
6161 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-typerep))))
6162 (home-page "https://github.com/janestreet/typerep")
6163 (synopsis "Typerep is a library for runtime types")
6164 (description "Typerep is a library for runtime types.")
6165 (license license:expat)))
6166
6167 (define-public ocaml4.07-typerep
6168 (package-with-ocaml4.07
6169 (package
6170 (inherit ocaml-typerep)
6171 (version "0.11.0")
6172 (source (origin
6173 (method url-fetch)
6174 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
6175 (version-major+minor version)
6176 "/files/typerep-v" version ".tar.gz"))
6177 (sha256
6178 (base32
6179 "1zi7hy0prpgzqhr4lkacr04wvlvbp21jfbdfvffhrm6cd400rb5v"))))
6180 (properties '())
6181 (license license:asl2.0))))
6182
6183 (define-public ocaml-ppx-sexp-value
6184 (package
6185 (name "ocaml-ppx-sexp-value")
6186 (version "0.15.0")
6187 (source
6188 (origin
6189 (method git-fetch)
6190 (uri (git-reference
6191 (url "https://github.com/janestreet/ppx_sexp_value")
6192 (commit (string-append "v" version))))
6193 (file-name (git-file-name name version))
6194 (sha256
6195 (base32 "0kz83j9v6yz3v8c6vr9ilhkcci4hhjd6i6r6afnx72jh6i7d3hnv"))))
6196 (build-system dune-build-system)
6197 (propagated-inputs
6198 (list ocaml-base ocaml-ppx-here ocaml-ppx-sexp-conv ocaml-ppxlib))
6199 (properties `((upstream-name . "ppx_sexp_value")
6200 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-sexp-value))))
6201 (home-page "https://github.com/janestreet/ppx_sexp_value")
6202 (synopsis "Simplify building s-expressions from ocaml values")
6203 (description "@samp{ppx-sexp-value} is a ppx rewriter that simplifies
6204 building s-expressions from ocaml values.")
6205 (license license:expat)))
6206
6207 (define-public ocaml4.07-ppx-sexp-value
6208 (package-with-ocaml4.07
6209 (package
6210 (inherit ocaml-ppx-sexp-value)
6211 (version "0.11.0")
6212 (source (origin
6213 (method url-fetch)
6214 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
6215 (version-major+minor version)
6216 "/files/ppx_sexp_value-v" version ".tar.gz"))
6217 (sha256
6218 (base32
6219 "1xnalfrln6k5khsyxvxkg6v32q8fpr4cqamsjqfih29jdv486xrs"))))
6220 (propagated-inputs
6221 (list ocaml-base
6222 ocaml-ppx-here
6223 ocaml-ppx-sexp-conv
6224 ocaml-migrate-parsetree
6225 ocaml-ppxlib))
6226 (properties '())
6227 (license license:asl2.0))))
6228
6229 (define-public ocaml-ppx-sexp-message
6230 (package
6231 (name "ocaml-ppx-sexp-message")
6232 (version "0.15.0")
6233 (source
6234 (origin
6235 (method git-fetch)
6236 (uri (git-reference
6237 (url "https://github.com/janestreet/ppx_sexp_message")
6238 (commit (string-append "v" version))))
6239 (file-name (git-file-name name version))
6240 (sha256
6241 (base32 "0a7hx50bkkc5n5msc3zzc4ixnp7674x3mallknb9j31jnd8l90nj"))))
6242 (build-system dune-build-system)
6243 (propagated-inputs
6244 (list ocaml-base ocaml-ppx-here ocaml-ppx-sexp-conv ocaml-ppxlib))
6245 (properties `((upstream-name . "ppx_sexp_message")
6246 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-sexp-message))))
6247 (home-page "https://github.com/janestreet/ppx_sexp_message")
6248 (synopsis "Ppx rewriter for easy construction of s-expressions")
6249 (description "Ppx_sexp_message aims to ease the creation of s-expressions
6250 in OCaml. This is mainly motivated by writing error and debugging messages,
6251 where one needs to construct a s-expression based on various element of the
6252 context such as function arguments.")
6253 (license license:expat)))
6254
6255 (define-public ocaml4.07-ppx-sexp-message
6256 (package-with-ocaml4.07
6257 (package
6258 (inherit ocaml-ppx-sexp-message)
6259 (version "0.11.0")
6260 (source (origin
6261 (method url-fetch)
6262 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
6263 (version-major+minor version)
6264 "/files/ppx_sexp_message-v" version ".tar.gz"))
6265 (sha256
6266 (base32
6267 "1yh440za0w9cvrbxbmqacir8715kdaw6sw24ys9xj80av9nqpiw7"))))
6268 (propagated-inputs
6269 (list ocaml-base
6270 ocaml-ppx-here
6271 ocaml-ppx-sexp-conv
6272 ocaml-migrate-parsetree
6273 ocaml-ppxlib))
6274 (properties '())
6275 (license license:asl2.0))))
6276
6277 (define-public ocaml-ppx-pipebang
6278 (package
6279 (name "ocaml-ppx-pipebang")
6280 (version "0.15.0")
6281 (source
6282 (origin
6283 (method git-fetch)
6284 (uri (git-reference
6285 (url "https://github.com/janestreet/ppx_pipebang")
6286 (commit (string-append "v" version))))
6287 (file-name (git-file-name name version))
6288 (sha256
6289 (base32 "0sm5dghyalhws3hy1cc2ih36az1k4q02hcgj6l26gwyma3y4irvq"))))
6290 (build-system dune-build-system)
6291 (arguments `(#:tests? #f)); no tests
6292 (propagated-inputs (list ocaml-ppxlib))
6293 (properties `((upstream-name . "ppx_pipebang")
6294 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-pipebang))))
6295 (home-page "https://github.com/janestreet/ppx_pipebang")
6296 (synopsis "Inline reverse application operators `|>` and `|!`")
6297 (description "A ppx rewriter that inlines reverse application operators
6298 @code{|>} and @code{|!}.")
6299 (license license:expat)))
6300
6301 (define-public ocaml4.07-ppx-pipebang
6302 (package-with-ocaml4.07
6303 (package
6304 (inherit ocaml-ppx-pipebang)
6305 (version "0.11.0")
6306 (source (origin
6307 (method url-fetch)
6308 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
6309 (version-major+minor version)
6310 "/files/ppx_pipebang-v" version ".tar.gz"))
6311 (sha256
6312 (base32
6313 "1wrrzlb4kdvkkcmzi01fw25jar38r2jlnyn0i6pn4z0lq4gpm9m0"))))
6314 (propagated-inputs (list ocaml-migrate-parsetree ocaml-ppxlib))
6315 (properties '())
6316 (license license:asl2.0))))
6317
6318 (define-public ocaml-ppx-module-timer
6319 (package
6320 (name "ocaml-ppx-module-timer")
6321 (version "0.15.0")
6322 (source
6323 (origin
6324 (method git-fetch)
6325 (uri (git-reference
6326 (url "https://github.com/janestreet/ppx_module_timer")
6327 (commit (string-append "v" version))))
6328 (file-name (git-file-name name version))
6329 (sha256
6330 (base32 "0lzi5hxi10p89ddqbrc667267f888kqslal76gfhmszyk60n20av"))))
6331 (build-system dune-build-system)
6332 (arguments
6333 `(#:tests? #f)); no tests
6334 (propagated-inputs
6335 (list ocaml-base ocaml-ppx-base ocaml-stdio ocaml-time-now ocaml-ppxlib))
6336 (properties `((upstream-name . "ppx_module_timer")))
6337 (home-page "https://github.com/janestreet/ppx_module_timer")
6338 (synopsis "Ppx rewriter that records top-level module startup times")
6339 (description "Modules using @samp{ppx_module_timer} have instrumentation
6340 to record their startup time.")
6341 (license license:expat)))
6342
6343 (define-public ocaml-ppx-fixed-literal
6344 (package
6345 (name "ocaml-ppx-fixed-literal")
6346 (version "0.15.0")
6347 (source
6348 (origin
6349 (method git-fetch)
6350 (uri (git-reference
6351 (url "https://github.com/janestreet/ppx_fixed_literal")
6352 (commit (string-append "v" version))))
6353 (file-name (git-file-name name version))
6354 (sha256
6355 (base32 "10siwcqrqa4gh0mg6fkaby0jjskc01r81pcblc67h3vmbjjh08j9"))))
6356 (build-system dune-build-system)
6357 (arguments
6358 `(#:tests? #f)); no tests
6359 (propagated-inputs (list ocaml-base ocaml-ppxlib))
6360 (properties `((upstream-name . "ppx_fixed_literal")))
6361 (home-page "https://github.com/janestreet/ppx_fixed_literal")
6362 (synopsis "Simpler notation for fixed point literals")
6363 (description
6364 "@samp{ppx-fixed-literal} is a ppx rewriter that rewrites fixed point
6365 literal of the form 1.0v to conversion functions currently in scope.")
6366 (license license:expat)))
6367
6368 (define-public ocaml-ppx-optional
6369 (package
6370 (name "ocaml-ppx-optional")
6371 (version "0.15.0")
6372 (source
6373 (janestreet-origin
6374 "ppx_optional" version
6375 "0af7ayhfc1jc01mxs4k253gq49yss2ymkmjsy6fpcz39zhci7fvj"))
6376 (build-system dune-build-system)
6377 (arguments `(#:tests? #f)) ; No tests
6378 (propagated-inputs
6379 (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib))
6380 (properties `((upstream-name . "ppx_optional")
6381 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-optional))))
6382 (home-page "https://github.com/janestreet/ppx_optional")
6383 (synopsis "Pattern matching on flat options")
6384 (description
6385 "A ppx rewriter that rewrites simple match statements with an if then
6386 else expression.")
6387 (license license:asl2.0)))
6388
6389 (define-public ocaml4.07-ppx-optional
6390 (package-with-ocaml4.07
6391 (package
6392 (inherit ocaml-ppx-optional)
6393 (version "0.11.0")
6394 (source
6395 (janestreet-origin
6396 "ppx_optional" version
6397 "1z8z2bga95k2vksljljfglg10vygkjd24kn1b37sk4z3nmp47x0h"))
6398 (properties `((upstream-name . "ppx_optional"))))))
6399
6400 (define-public ocaml-ppx-optcomp
6401 (package
6402 (name "ocaml-ppx-optcomp")
6403 (version "0.15.0")
6404 (home-page "https://github.com/janestreet/ppx_optcomp")
6405 (source
6406 (origin
6407 (method git-fetch)
6408 (uri (git-reference
6409 (url home-page)
6410 (commit (string-append "v" version))))
6411 (file-name (git-file-name name version))
6412 (sha256
6413 (base32
6414 "0ypivfipi8fcr9pqyvl2ajpcivmr1irdwwv248i4x6mggpc2pl0b"))))
6415 (build-system dune-build-system)
6416 (propagated-inputs
6417 (list ocaml-base ocaml-stdio ocaml-ppxlib))
6418 (properties `((upstream-name . "ppx_optcomp")
6419 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-optcomp))))
6420 (synopsis "Optional compilation for OCaml")
6421 (description "Ppx_optcomp stands for Optional Compilation. It is a tool
6422 used to handle optional compilations of pieces of code depending of the word
6423 size, the version of the compiler, ...")
6424 (license license:asl2.0)))
6425
6426 (define-public ocaml4.07-ppx-optcomp
6427 (package-with-ocaml4.07
6428 (package
6429 (inherit ocaml-ppx-optcomp)
6430 (version "0.11.0")
6431 (source
6432 (janestreet-origin
6433 "ppx_optcomp" version
6434 "1bb52p2j2h4s9f06vrcpla80rj93jinnzq6jzilapyx9q068929i"))
6435 (properties `((upstream-name . "ppx_optcomp"))))))
6436
6437 (define-public ocaml-ppx-let
6438 (package
6439 (name "ocaml-ppx-let")
6440 (version "0.15.0")
6441 (source
6442 (janestreet-origin "ppx_let" version
6443 "0m9niyiiv3qzv5x8hw0ifxjjzshnmx40dchka9d93mmnx88jqx34"))
6444 (build-system dune-build-system)
6445 (propagated-inputs
6446 (list ocaml-base ocaml-migrate-parsetree ocaml-ppxlib ocaml-ppx-here))
6447 (properties `((upstream-name . "ppx_let")
6448 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-let))))
6449 (home-page "https://github.com/janestreet/ppx_let")
6450 (synopsis "Monadic let-bindings")
6451 (description "A ppx rewriter for monadic and applicative let bindings,
6452 match expressions, and if expressions.")
6453 (license license:asl2.0)))
6454
6455 (define-public ocaml4.07-ppx-let
6456 (package-with-ocaml4.07
6457 (package
6458 (inherit ocaml-ppx-let)
6459 (version "0.11.0")
6460 (source
6461 (janestreet-origin "ppx_let" version
6462 "1wdfw6w4xbg97a35yg6bif9gggxniy9ddnrjfw1a0inkl2yamxkj"))
6463
6464 (properties `((upstream-name . "ppx_let"))))))
6465
6466 (define-public ocaml-ppx-fail
6467 (package
6468 (name "ocaml-ppx-fail")
6469 (version "0.14.0")
6470 (source
6471 (origin
6472 (method git-fetch)
6473 (uri (git-reference
6474 (url "https://github.com/janestreet/ppx_fail")
6475 (commit (string-append "v" version))))
6476 (file-name (git-file-name name version))
6477 (sha256
6478 (base32 "012p9gv7w4sk3b4x0sdmqrmr2856w8xc424waxb6vrybid7qjs95"))))
6479 (build-system dune-build-system)
6480 (propagated-inputs (list ocaml-base ocaml-ppx-here ocaml-ppxlib))
6481 (properties `((upstream-name . "ppx_fail")
6482 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-fail))))
6483 (home-page "https://github.com/janestreet/ppx_fail")
6484 (synopsis "Add location to calls to failwiths")
6485 (description "Syntax extension that makes [failwiths] always include a
6486 position.")
6487 (license license:expat)))
6488
6489 (define-public ocaml4.07-ppx-fail
6490 (package-with-ocaml4.07
6491 (package
6492 (inherit ocaml-ppx-fail)
6493 (version "0.11.0")
6494 (source (origin
6495 (method url-fetch)
6496 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
6497 (version-major+minor version)
6498 "/files/ppx_fail-v" version ".tar.gz"))
6499 (sha256
6500 (base32
6501 "07plqsvljiwvngggfypwq55g46s5my55y45mvlmalrxyppzr03s8"))))
6502 (propagated-inputs
6503 (list ocaml-base ocaml-ppx-here ocaml-migrate-parsetree ocaml-ppxlib))
6504 (properties '())
6505 (license license:asl2.0))))
6506
6507 (define-public ocaml-ppx-cold
6508 (package
6509 (name "ocaml-ppx-cold")
6510 (version "0.15.0")
6511 (home-page "https://github.com/janestreet/ppx_cold")
6512 (source
6513 (janestreet-origin "ppx_cold" version
6514 "13gqmfw2sq80anag9bwpm35600l1fnfn7mh9cbj1291k84rsx7wb"))
6515 (build-system dune-build-system)
6516 (arguments `(#:test-target "tests"))
6517 (propagated-inputs
6518 (list ocaml-base ocaml-ppxlib))
6519 (properties `((upstream-name . "ppx_cold")))
6520 (synopsis "Syntax extension for indicating cold path")
6521 (description
6522 "This package contains an syntax extension to indicate that the code is
6523 on the cold path and should be kept out of the way to avoid polluting the
6524 instruction cache on the hot path. See also
6525 https://github.com/ocaml/ocaml/issues/8563.")
6526 (license license:expat)))
6527
6528 (define-public ocaml-ppx-assert
6529 (package
6530 (name "ocaml-ppx-assert")
6531 (version "0.15.0")
6532 (source
6533 (janestreet-origin "ppx_assert" version
6534 "0rsr1yz2rs12w6qw0dz09dg3k2x2pfgd014fgp6nj993hhznapsf"))
6535 (build-system dune-build-system)
6536 (propagated-inputs
6537 (list ocaml-base
6538 ocaml-ppx-cold
6539 ocaml-ppx-compare
6540 ocaml-ppx-here
6541 ocaml-ppx-sexp-conv
6542 ocaml-migrate-parsetree
6543 ocaml-ppxlib))
6544 (properties `((upstream-name . "ppx_assert")
6545 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-assert))))
6546 (home-page "https://github.com/janestreet/ppx_assert")
6547 (synopsis "Assert-like extension nodes that raise useful errors on failure")
6548 (description "This package contains assert-like extension nodes that raise
6549 useful errors on failure.")
6550 (license license:asl2.0)))
6551
6552 (define-public ocaml4.07-ppx-assert
6553 (package-with-ocaml4.07
6554 (package
6555 (inherit ocaml-ppx-assert)
6556 (version "0.11.0")
6557 (source
6558 (janestreet-origin "ppx_assert" version
6559 "17kd311n0l9f72gblf9kv8i5rghr106w37x4f0m5qwh6nlgl0j9k"))
6560 (propagated-inputs
6561 `(("ocaml-base" ,ocaml-base)
6562 ("ocaml-ppx-compare" ,ocaml-ppx-compare)
6563 ("ocaml-ppx-here" ,ocaml-ppx-here)
6564 ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
6565 ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
6566 ("ocaml-ppxlib" ,ocaml-ppxlib)))
6567 (properties `((upstream-name . "ppx_assert"))))))
6568
6569 (define-public ocaml-ppx-expect
6570 (package
6571 (name "ocaml-ppx-expect")
6572 (version "0.15.0")
6573 (source
6574 (origin
6575 (method git-fetch)
6576 (uri (git-reference
6577 (url "https://github.com/janestreet/ppx_expect")
6578 (commit (string-append "v" version))))
6579 (file-name (git-file-name name version))
6580 (sha256
6581 (base32
6582 "134dl5qhjxsj2mcmrx9f3m0iys0n5mjfpz9flj8zn8d2jir43776"))))
6583 (build-system dune-build-system)
6584 (propagated-inputs
6585 (list ocaml-base
6586 ocaml-ppx-here
6587 ocaml-ppx-inline-test
6588 ocaml-stdio
6589 ocaml-ppxlib
6590 ocaml-migrate-parsetree
6591 ocaml-re))
6592 (properties `((upstream-name . "ppx_expect")
6593 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-expect))))
6594 (home-page "https://github.com/janestreet/ppx_expect")
6595 (synopsis "Cram like framework for OCaml")
6596 (description "Expect-test is a framework for writing tests in OCaml, similar
6597 to Cram. Expect-tests mimics the existing inline tests framework with the
6598 @code{let%expect_test} construct. The body of an expect-test can contain
6599 output-generating code, interleaved with @code{%expect} extension expressions
6600 to denote the expected output.")
6601 (license license:asl2.0)))
6602
6603 (define-public ocaml4.07-ppx-expect
6604 (package-with-ocaml4.07
6605 (package
6606 (inherit ocaml-ppx-expect)
6607 (version "0.12.0")
6608 (source
6609 (janestreet-origin "ppx_expect" version
6610 "1zpci8c49yn2ixchmwjx1kf9pwybv3dnn4l2dgnd6m36qnkralfk"))
6611 (propagated-inputs
6612 `(("ocaml-base" ,ocaml-base)
6613 ("ocaml-ppx-assert" ,ocaml-ppx-assert)
6614 ("ocaml-ppx-compare" ,ocaml-ppx-compare)
6615 ("ocaml-ppx-custom-printf" ,ocaml-ppx-custom-printf)
6616 ("ocaml-ppx-fields-conv" ,ocaml-ppx-fields-conv)
6617 ("ocaml-ppx-here" ,ocaml-ppx-here)
6618 ("ocaml-ppx-inline-test" ,ocaml-ppx-inline-test)
6619 ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
6620 ("ocaml-ppx-variants-conv" ,ocaml-ppx-variants-conv)
6621 ("ocaml-stdio" ,ocaml-stdio)
6622 ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
6623 ("ocaml-ppxlib" ,ocaml-ppxlib)
6624 ("ocaml-re" ,ocaml-re)))
6625 (properties `((upstream-name . "ppx_expect"))))))
6626
6627 (define-public ocaml-ppx-js-style
6628 (package
6629 (name "ocaml-ppx-js-style")
6630 (version "0.15.0")
6631 (source
6632 (origin
6633 (method git-fetch)
6634 (uri (git-reference
6635 (url "https://github.com/janestreet/ppx_js_style")
6636 (commit (string-append "v" version))))
6637 (file-name (git-file-name name version))
6638 (sha256
6639 (base32
6640 "0q2p9pvmlncgv0hprph95xiv7s6q44ynvp4yl4dckf1qx68rb3ba"))))
6641 (build-system dune-build-system)
6642 (arguments `(#:tests? #f)) ; No tests
6643 (propagated-inputs
6644 (list ocaml-base ocaml-migrate-parsetree ocaml-octavius ocaml-ppxlib))
6645 (properties `((upstream-name . "ppx_js_style")
6646 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-js-style))))
6647 (home-page "https://github.com/janestreet/ppx_js_style")
6648 (synopsis "Code style checker for Jane Street Packages")
6649 (description "This package is a no-op ppx rewriter. It is used as a
6650 @code{lint} tool to enforce some coding conventions across all Jane Street
6651 packages.")
6652 (license license:asl2.0)))
6653
6654 (define-public ocaml4.07-ppx-js-style
6655 (package-with-ocaml4.07
6656 (package
6657 (inherit ocaml-ppx-js-style)
6658 (version "0.11.0")
6659 (source
6660 (janestreet-origin "ppx_js_style" version
6661 "0z3fc55jdjhhsblla6z4fqc13kljpcz29q79rvs5h2vsraqrldr2"))
6662 (properties `((upstream-name . "ppx_js_style"))))))
6663
6664 (define-public ocaml-ppx-typerep-conv
6665 (package
6666 (name "ocaml-ppx-typerep-conv")
6667 (version "0.15.0")
6668 (source
6669 (origin
6670 (method git-fetch)
6671 (uri (git-reference
6672 (url "https://github.com/janestreet/ppx_typerep_conv/")
6673 (commit (string-append "v" version))))
6674 (file-name (git-file-name name version))
6675 (sha256
6676 (base32 "1q1lzykpm83ra4l5jh4rfddhd3c96kx4s4rvx0w4b51z1qk56zam"))))
6677 (build-system dune-build-system)
6678 (arguments
6679 `(#:test-target "."))
6680 (propagated-inputs (list ocaml-base ocaml-typerep ocaml-ppxlib))
6681 (properties `((upstream-name . "ppx_typerep_conv")
6682 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-typerep-conv))))
6683 (home-page "https://github.com/janestreet/ppx_typerep_conv")
6684 (synopsis "Generation of runtime types from type declarations")
6685 (description "This package can automatically generate runtime types
6686 from type definitions.")
6687 (license license:expat)))
6688
6689 (define-public ocaml4.07-ppx-typerep-conv
6690 (package-with-ocaml4.07
6691 (package
6692 (inherit ocaml-ppx-typerep-conv)
6693 (version "0.11.1")
6694 (source (origin
6695 (method git-fetch)
6696 (uri (git-reference
6697 (url "https://github.com/janestreet/ppx_typerep_conv")
6698 (commit (string-append "v" version))))
6699 (file-name (git-file-name "ocaml4.07-ppx-typerep-conv" version))
6700 (sha256
6701 (base32
6702 "0a13dpfrrg0rsm8qni1bh7pqcda30l70z8r6yzi5a64bmwk7g5ah"))))
6703 (properties '())
6704 (propagated-inputs
6705 (list ocaml-base ocaml-typerep ocaml-migrate-parsetree ocaml-ppxlib))
6706 (license license:asl2.0))))
6707
6708 (define-public ocaml-ppx-string
6709 (package
6710 (name "ocaml-ppx-string")
6711 (version "0.15.0")
6712 (source
6713 (origin
6714 (method git-fetch)
6715 (uri (git-reference
6716 (url "https://github.com/janestreet/ppx_string")
6717 (commit (string-append "v" version))))
6718 (file-name (git-file-name name version))
6719 (sha256
6720 (base32 "1dp5frk6cig5m3m5rrh2alw63snyf845x7zlkkaljip02pqcbw1s"))))
6721 (build-system dune-build-system)
6722 (arguments `(#:tests? #f)); no tests
6723 (propagated-inputs
6724 (list ocaml-base ocaml-ppx-base ocaml-stdio ocaml-ppxlib))
6725 (properties `((upstream-name . "ppx_string")))
6726 (home-page "https://github.com/janestreet/ppx_string")
6727 (synopsis "Ppx extension for string interpolation")
6728 (description "This extension provides a syntax for string interpolation.")
6729 (license license:expat)))
6730
6731 (define-public ocaml-ppx-stable
6732 (package
6733 (name "ocaml-ppx-stable")
6734 (version "0.15.0")
6735 (source
6736 (origin
6737 (method git-fetch)
6738 (uri (git-reference
6739 (url "https://github.com/janestreet/ppx_stable")
6740 (commit (string-append "v" version))))
6741 (file-name (git-file-name name version))
6742 (sha256
6743 (base32 "1as0v0x8c9ilyhngax55lvwyyi4a2wshyan668v0f2s1608cwb1l"))))
6744 (build-system dune-build-system)
6745 (arguments
6746 `(#:test-target "tests"))
6747 (propagated-inputs (list ocaml-base ocaml-ppxlib))
6748 (properties `((upstream-name . "ppx_stable")))
6749 (home-page "https://github.com/janestreet/ppx_stable")
6750 (synopsis "Stable types conversions generator")
6751 (description "This package is a ppx extension for easier implementation of
6752 conversion functions between almost identical types.")
6753 (license license:expat)))
6754
6755 (define-public ocaml-ppx-base
6756 (package
6757 (name "ocaml-ppx-base")
6758 (version "0.15.0")
6759 (source
6760 (janestreet-origin
6761 "ppx_base" version
6762 "181w7y2has8jsrqdsvd08q5nhnkx523vwsk3lg0cjix55qssvfyn"))
6763 (build-system dune-build-system)
6764 (arguments
6765 `(#:test-target "."))
6766 (propagated-inputs
6767 (list ocaml-ppx-compare
6768 ocaml-ppx-cold
6769 ocaml-ppx-enumerate
6770 ocaml-ppx-hash
6771 ocaml-ppx-js-style
6772 ocaml-ppx-sexp-conv
6773 ocaml-migrate-parsetree
6774 ocaml-ppxlib))
6775 (properties `((upstream-name . "ppx_base")
6776 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-base))))
6777 (home-page "https://github.com/janestreet/ppx_base")
6778 (synopsis "Base set of ppx rewriters")
6779 (description "Ppx_base is the set of ppx rewriters used for Base.
6780
6781 Note that Base doesn't need ppx to build, it is only used as a
6782 verification tool.")
6783 (license license:asl2.0)))
6784
6785 (define-public ocaml4.07-ppx-base
6786 (package-with-ocaml4.07
6787 (package
6788 (inherit ocaml-ppx-base)
6789 (version "0.11.0")
6790 (source
6791 (janestreet-origin
6792 "ppx_base" version
6793 "0aq206pg330jmj7lhcagiiwm3a0b3gsqm801m8ajd4ysyw7idkym"))
6794 (propagated-inputs
6795 `(("ocaml-ppx-compare" ,ocaml-ppx-compare)
6796 ("ocaml-ppx-enumerate" ,ocaml-ppx-enumerate)
6797 ("ocaml-ppx-hash" ,ocaml-ppx-hash)
6798 ("ocaml-ppx-js-style" ,ocaml-ppx-js-style)
6799 ("ocaml-ppx-sexp-conv" ,ocaml-ppx-sexp-conv)
6800 ("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
6801 ("ocaml-ppxlib" ,ocaml-ppxlib)))
6802 (properties `((upstream-name . "ppx_base"))))))
6803
6804 (define-public ocaml-ppx-bin-prot
6805 (package
6806 (name "ocaml-ppx-bin-prot")
6807 (version "0.15.0")
6808 (source
6809 (origin
6810 (method git-fetch)
6811 (uri (git-reference
6812 (url "https://github.com/janestreet/ppx_bin_prot")
6813 (commit (string-append "v" version))))
6814 (file-name (git-file-name name version))
6815 (sha256
6816 (base32 "1280wsls061fmvmdysjqn3lv4mnkyg400jnjf4jyfr14s33h1ad5"))))
6817 (build-system dune-build-system)
6818 (arguments
6819 ;; Cyclic dependency with ocaml-ppx-jane
6820 `(#:tests? #f))
6821 (propagated-inputs
6822 (list ocaml-base ocaml-bin-prot ocaml-ppx-here ocaml-ppxlib))
6823 (properties `((upstream-name . "ppx_bin_prot")
6824 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-bin-prot))))
6825 (home-page "https://github.com/janestreet/ppx_bin_prot")
6826 (synopsis "Generation of bin_prot readers and writers from types")
6827 (description "Generation of binary serialization and deserialization
6828 functions from type definitions.")
6829 (license license:expat)))
6830
6831 (define-public ocaml4.07-ppx-bin-prot
6832 (package-with-ocaml4.07
6833 (package
6834 (inherit ocaml-ppx-bin-prot)
6835 (version "0.11.1")
6836 (source (origin
6837 (method git-fetch)
6838 (uri (git-reference
6839 (url "https://github.com/janestreet/ppx_bin_prot")
6840 (commit (string-append "v" version))))
6841 (file-name (git-file-name "ocaml4.07-ppx-bin-prot" version))
6842 (sha256
6843 (base32
6844 "1h60i75bzvhna1axyn662gyrzhh441l79vl142d235i5x31dmnkz"))))
6845 (propagated-inputs
6846 (list ocaml-base
6847 ocaml-bin-prot
6848 ocaml-ppx-here
6849 ocaml-migrate-parsetree
6850 ocaml-ppxlib))
6851 (properties '())
6852 (license license:asl2.0))))
6853
6854 (define-public ocaml-ppx-ignore-instrumentation
6855 (package
6856 (name "ocaml-ppx-ignore-instrumentation")
6857 (version "0.15.0")
6858 (source
6859 (origin
6860 (method git-fetch)
6861 (uri (git-reference
6862 (url "https://github.com/janestreet/ppx_ignore_instrumentation")
6863 (commit (string-append "v" version))))
6864 (file-name (git-file-name name version))
6865 (sha256
6866 (base32 "16fgig88g3jr0m3i636fr52h29h1yzhi8nhnl4029zn808kcdyj2"))))
6867 (build-system dune-build-system)
6868 (arguments
6869 `(#:tests? #f)) ;no tests
6870 (propagated-inputs (list ocaml-ppxlib))
6871 (properties `((upstream-name . "ppx_ignore_instrumentation")))
6872 (home-page "https://github.com/janestreet/ppx_ignore_instrumentation")
6873 (synopsis "Ignore Jane Street specific instrumentation extensions")
6874 (description
6875 "Ignore Jane Street specific instrumentation extensions from internal
6876 PPXs or compiler features not yet upstreamed.")
6877 (license license:expat)))
6878
6879 (define-public ocaml-ppx-log
6880 (package
6881 (name "ocaml-ppx-log")
6882 (version "0.15.0")
6883 (source
6884 (origin
6885 (method git-fetch)
6886 (uri (git-reference
6887 (url "https://github.com/janestreet/ppx_log")
6888 (commit (string-append "v" version))))
6889 (file-name (git-file-name name version))
6890 (sha256
6891 (base32 "08i9gz3f4w3bmlrfdw7ja9awsfkhhldz03bnnc4hijfmn8sawzi0"))))
6892 (build-system dune-build-system)
6893 (propagated-inputs
6894 (list ocaml-base
6895 ocaml-ppx-here
6896 ocaml-ppx-sexp-conv
6897 ocaml-ppx-sexp-message
6898 ocaml-sexplib
6899 ocaml-ppxlib))
6900 (properties `((upstream-name . "ppx_log")))
6901 (home-page "https://github.com/janestreet/ppx_log")
6902 (synopsis "Extension nodes for lazily rendering log messages")
6903 (description "This package provides ppx_sexp_message-like extension
6904 nodes for lazily rendering log messages.")
6905 (license license:expat)))
6906
6907 (define-public ocaml-ppx-disable-unused-warnings
6908 (package
6909 (name "ocaml-ppx-disable-unused-warnings")
6910 (version "0.15.0")
6911 (source
6912 (origin
6913 (method git-fetch)
6914 (uri (git-reference
6915 (url "https://github.com/janestreet/ppx_disable_unused_warnings")
6916 (commit (string-append "v" version))))
6917 (file-name (git-file-name name version))
6918 (sha256
6919 (base32 "0sb5i4v7p9df2bxk66rjs30k9fqdrwsq1jgykjv6wyrx2d9bv955"))))
6920 (build-system dune-build-system)
6921 (arguments
6922 `(#:test-target "tests"))
6923 (propagated-inputs (list ocaml-base ocaml-ppxlib))
6924 (properties `((upstream-name . "ppx_disable_unused_warnings")))
6925 (home-page "https://github.com/janestreet/ppx_disable_unused_warnings")
6926 (synopsis "Simple ppx extension for commonly unused warnings")
6927 (description "This package expands @code{@@disable_unused_warnings} into
6928 @code{@@warning \"-20-26-32-33-34-35-36-37-38-39-60-66-67\"}")
6929 (license license:expat)))
6930
6931 (define-public ocaml-ppx-jane
6932 (package
6933 (name "ocaml-ppx-jane")
6934 (version "0.15.0")
6935 (source
6936 (origin
6937 (method git-fetch)
6938 (uri (git-reference
6939 (url "https://github.com/janestreet/ppx_jane")
6940 (commit (string-append "v" version))))
6941 (file-name (git-file-name name version))
6942 (sha256
6943 (base32 "1p6847gdfnnj6qpa4yh57s6wwpsl7rfgy0q7993chz24h9mhz5lk"))))
6944 (build-system dune-build-system)
6945 (arguments
6946 `(#:test-target "."))
6947 (propagated-inputs
6948 (list ocaml-base-quickcheck
6949 ocaml-ppx-assert
6950 ocaml-ppx-base
6951 ocaml-ppx-bench
6952 ocaml-ppx-bin-prot
6953 ocaml-ppx-custom-printf
6954 ocaml-ppx-disable-unused-warnings
6955 ocaml-ppx-expect
6956 ocaml-ppx-fields-conv
6957 ocaml-ppx-fixed-literal
6958 ocaml-ppx-here
6959 ocaml-ppx-ignore-instrumentation
6960 ocaml-ppx-inline-test
6961 ocaml-ppx-let
6962 ocaml-ppx-log
6963 ocaml-ppx-module-timer
6964 ocaml-ppx-optcomp
6965 ocaml-ppx-optional
6966 ocaml-ppx-pipebang
6967 ocaml-ppx-sexp-message
6968 ocaml-ppx-sexp-value
6969 ocaml-ppx-stable
6970 ocaml-ppx-string
6971 ocaml-ppx-typerep-conv
6972 ocaml-ppx-variants-conv
6973 ocaml-ppxlib))
6974 (properties `((upstream-name . "ppx_jane")
6975 (ocaml4.07-variant . ,(delay ocaml4.07-ppx-jane))))
6976 (home-page "https://github.com/janestreet/ppx_jane")
6977 (synopsis "Standard Jane Street ppx rewriters")
6978 (description "This package installs a ppx-jane executable, which is a ppx
6979 driver including all standard Jane Street ppx rewriters.")
6980 (license license:expat)))
6981
6982 (define-public ocaml4.07-ppx-jane
6983 (package-with-ocaml4.07
6984 (package
6985 (inherit ocaml-ppx-jane)
6986 (version "0.11.0")
6987 (source (origin
6988 (method url-fetch)
6989 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
6990 (version-major+minor version)
6991 "/files/ppx_jane-v" version ".tar.gz"))
6992 (sha256
6993 (base32
6994 "0lgppkw3aixrfnixihrsz2ipafv8fpvkdpy3pw8n0r615gg8x8la"))))
6995 (propagated-inputs
6996 (list ocaml-ppx-assert
6997 ocaml-ppx-base
6998 ocaml-ppx-bench
6999 ocaml-ppx-bin-prot
7000 ocaml-ppx-custom-printf
7001 ocaml-ppx-expect
7002 ocaml-ppx-fail
7003 ocaml-ppx-fields-conv
7004 ocaml-ppx-here
7005 ocaml-ppx-inline-test
7006 ocaml-ppx-let
7007 ocaml-ppx-optcomp
7008 ocaml-ppx-optional
7009 ocaml-ppx-pipebang
7010 ocaml-ppx-sexp-message
7011 ocaml-ppx-sexp-value
7012 ocaml-ppx-typerep-conv
7013 ocaml-ppx-variants-conv
7014 ocaml-migrate-parsetree
7015 ocaml-ppxlib))
7016 (properties '())
7017 (license license:asl2.0))))
7018
7019 (define-public ocaml-base-bigstring
7020 (package
7021 (name "ocaml-base-bigstring")
7022 (version "0.15.0")
7023 (source
7024 (origin
7025 (method git-fetch)
7026 (uri (git-reference
7027 (url "https://github.com/janestreet/base_bigstring")
7028 (commit (string-append "v" version))))
7029 (file-name (git-file-name name version))
7030 (sha256
7031 (base32 "1hv3hw2fwqmkrxms1g6rw3c18mmla1z5bva3anx45mnff903iv4q"))))
7032 (build-system dune-build-system)
7033 (propagated-inputs (list ocaml-base ocaml-int-repr ocaml-ppx-jane))
7034 (properties `((upstream-name . "base_bigstring")))
7035 (home-page "https://github.com/janestreet/base_bigstring")
7036 (synopsis "String type based on [Bigarray], for use in I/O and C-bindings")
7037 (description "This package provides string type based on [Bigarray], for
7038 use in I/O and C-bindings.")
7039 (license license:expat)))
7040
7041 (define-public ocaml-splittable-random
7042 (package
7043 (name "ocaml-splittable-random")
7044 (version "0.15.0")
7045 (source
7046 (origin
7047 (method git-fetch)
7048 (uri (git-reference
7049 (url "https://github.com/janestreet/splittable_random")
7050 (commit (string-append "v" version))))
7051 (file-name (git-file-name name version))
7052 (sha256
7053 (base32 "0ap5z4z1aagz4z02q9642cbl25jzws9lbc2x5xkpyjlc0qcm9v3m"))))
7054 (build-system dune-build-system)
7055 (propagated-inputs
7056 (list ocaml-base
7057 ocaml-ppx-assert
7058 ocaml-ppx-bench
7059 ocaml-ppx-inline-test
7060 ocaml-ppx-sexp-message))
7061 (properties `((upstream-name . "splittable_random")
7062 (ocaml-4.07-variant . ,(delay ocaml4.07-splittable-random))))
7063 (home-page "https://github.com/janestreet/splittable_random")
7064 (synopsis "PRNG that can be split into independent streams")
7065 (description "This package provides a splittable
7066 @acronym{PRNG,pseudo-random number generator} functions like a PRNG that can
7067 be used as a stream of random values; it can also be split to produce a
7068 second, independent stream of random values.
7069
7070 This library implements a splittable pseudo-random number generator that sacrifices
7071 cryptographic-quality randomness in favor of performance.")
7072 (license license:expat)))
7073
7074 (define-public ocaml4.07-splittable-random
7075 (package-with-ocaml4.07
7076 (package
7077 (inherit ocaml-splittable-random)
7078 (version "0.11.0")
7079 (source (origin
7080 (method url-fetch)
7081 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
7082 (version-major+minor version)
7083 "/files/splittable_random-v" version ".tar.gz"))
7084 (sha256
7085 (base32
7086 "0l1wbd881mymlnpzlq5q53mmdz3g5d7qjhyc7lfaq1x0iaccn5lc"))))
7087 (propagated-inputs
7088 (list ocaml-base ocaml-ppx-jane ocaml-migrate-parsetree))
7089 (properties '())
7090 (license license:asl2.0))))
7091
7092 (define-public ocaml-base-quickcheck
7093 (package
7094 (name "ocaml-base-quickcheck")
7095 (version "0.15.0")
7096 (source
7097 (origin
7098 (method git-fetch)
7099 (uri (git-reference
7100 (url "https://github.com/janestreet/base_quickcheck")
7101 (commit (string-append "v" version))))
7102 (file-name (git-file-name name version))
7103 (sha256
7104 (base32 "0q73kfr67cz5wp4qn4rq3lpa922hqmvwdiinnans0js65fvlgqsi"))))
7105 (build-system dune-build-system)
7106 (propagated-inputs
7107 (list ocaml-base
7108 ocaml-ppx-base
7109 ocaml-ppx-fields-conv
7110 ocaml-ppx-let
7111 ocaml-ppx-sexp-message
7112 ocaml-ppx-sexp-value
7113 ocaml-splittable-random
7114 ocaml-ppxlib))
7115 (properties `((upstream-name . "base_quickcheck")))
7116 (home-page "https://github.com/janestreet/base_quickcheck")
7117 (synopsis
7118 "Randomized testing framework, designed for compatibility with Base")
7119 (description
7120 "@samp{base-quickcheck} provides randomized testing in the style of
7121 Haskell's Quickcheck library, with support for built-in types as well as
7122 types provided by Base.")
7123 (license license:expat)))
7124
7125 (define-public ocaml4.07-jane-street-headers
7126 (package
7127 (name "ocaml4.07-jane-street-headers")
7128 (version "0.11.0")
7129 (source (origin
7130 (method url-fetch)
7131 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
7132 (version-major+minor version)
7133 "/files/jane-street-headers-v" version ".tar.gz"))
7134 (sha256
7135 (base32
7136 "0afhzm08l9v883fhpqqh2lmy7az609pxif40bp7x1sk8c0yszqsh"))))
7137 (build-system dune-build-system)
7138 (arguments
7139 `(#:test-target "."
7140 #:ocaml ,ocaml-4.07
7141 #:findlib ,ocaml4.07-findlib
7142 #:dune ,ocaml4.07-dune))
7143 (home-page "https://github.com/janestreet/jane-street-headers")
7144 (synopsis "Jane Street C header files")
7145 (description "This package provides C header files shared between the
7146 various Jane Street packages.")
7147 (license license:asl2.0)))
7148
7149 (define-public ocaml4.07-configurator
7150 (package
7151 (name "ocaml4.07-configurator")
7152 (version "0.11.0")
7153 (source (origin
7154 (method url-fetch)
7155 (uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
7156 (version-major+minor version)
7157 "/files/configurator-v" version ".tar.gz"))
7158 (sha256
7159 (base32
7160 "0kwgi3sh92v4n242dk5hgpwd85zzgnczgbkqi0q0kr6m93zgbf7p"))))
7161 (build-system dune-build-system)
7162 (arguments
7163 ;; No tests
7164 `(#:tests? #f
7165 #:ocaml ,ocaml-4.07
7166 #:findlib ,ocaml4.07-findlib
7167 #:dune ,ocaml4.07-dune))
7168 (propagated-inputs
7169 `(("ocaml-base" ,(package-with-ocaml4.07 ocaml-base))
7170 ("ocaml-stdio" ,(package-with-ocaml4.07 ocaml-stdio))))
7171 (home-page "https://github.com/janestreet/configurator")
7172 (synopsis "Helper library for gathering system configuration")
7173 (description "Configurator is a small library that helps writing OCaml
7174 scripts that test features available on the system, in order to generate config.h
7175 files for instance.
7176
7177 Configurator allows one to:
7178 @itemize
7179 @item test if a C program compiles
7180 @item query pkg-config
7181 @item import #define from OCaml header files
7182 @item generate config.h file
7183 @end itemize")
7184 (license license:asl2.0)))
7185
7186 (define-public ocaml-spawn
7187 (package
7188 (name "ocaml-spawn")
7189 (version "0.15.1")
7190 (source (origin
7191 (method git-fetch)
7192 (uri (git-reference
7193 (url "https://github.com/janestreet/spawn")
7194 (commit (string-append "v" version))))
7195 (file-name (git-file-name name version))
7196 (sha256
7197 (base32
7198 "16aq5z3mq5lkpryfs4w0748b2w9v061myml0hn7nhh6r6i329w7a"))))
7199 (build-system dune-build-system)
7200 (propagated-inputs (list ocaml-odoc))
7201 (native-inputs (list ocaml-ppx-expect))
7202 (properties
7203 `((ocaml4.07-variant . ,(delay ocaml4.07-spawn))))
7204 (home-page "https://github.com/janestreet/spawn")
7205 (synopsis "Spawning sub-processes")
7206 (description
7207 "Spawn is a small library exposing only one functionality: spawning sub-process.
7208
7209 It has three main goals:
7210
7211 @itemize
7212 @item provide missing features of Unix.create_process such as providing a
7213 working directory,
7214 @item provide better errors when a system call fails in the
7215 sub-process. For instance if a command is not found, you get a proper
7216 @code{Unix.Unix_error} exception,
7217 @item improve performances by using vfork when available. It is often
7218 claimed that nowadays fork is as fast as vfork, however in practice
7219 fork takes time proportional to the process memory while vfork is
7220 constant time. In application using a lot of memory, vfork can be
7221 thousands of times faster than fork.
7222 @end itemize")
7223 (license license:asl2.0)))
7224
7225 (define-public ocaml4.07-spawn
7226 (package-with-ocaml4.07
7227 (package
7228 (inherit ocaml-spawn)
7229 (version "0.13.0")
7230 (source (origin
7231 (method git-fetch)
7232 (uri (git-reference
7233 (url "https://github.com/janestreet/spawn")
7234 (commit (string-append "v" version))))
7235 (file-name (git-file-name "ocaml4.07-spawn" version))
7236 (sha256
7237 (base32
7238 "1w003k1kw1lmyiqlk58gkxx8rac7dchiqlz6ah7aj7bh49b36ppf"))))
7239 (arguments
7240 `(#:phases
7241 (modify-phases %standard-phases
7242 (add-before 'check 'fix-tests
7243 (lambda _
7244 (substitute* "test/tests.ml"
7245 (("/bin/pwd") (which "pwd"))
7246 (("/bin/echo") (which "echo")))
7247 #t)))
7248 #:ocaml ,ocaml-4.07
7249 #:findlib ,ocaml4.07-findlib
7250 #:dune ,ocaml4.07-dune))
7251 (propagated-inputs '())
7252 (properties '()))))
7253
7254 (define-public ocaml-core
7255 (package
7256 (name "ocaml-core")
7257 (version "0.15.0")
7258 (source
7259 (origin
7260 (method git-fetch)
7261 (uri (git-reference
7262 (url "https://github.com/janestreet/core")
7263 (commit (string-append "v" version))))
7264 (file-name (git-file-name name version))
7265 (sha256
7266 (base32 "1m2ybvlz9zlb2d0jc0j7wdgd18mx9sh3ds2ylkv0cfjx1pzi0l25"))))
7267 (build-system dune-build-system)
7268 (arguments
7269 `(#:package "core"
7270 #:tests? #f)); Require a cyclic dependency: core_extended
7271 (propagated-inputs
7272 (list ocaml-base
7273 ocaml-base-bigstring
7274 ocaml-base-quickcheck
7275 ocaml-bin-prot
7276 ocaml-fieldslib
7277 ocaml-jane-street-headers
7278 ocaml-jst-config
7279 ocaml-ppx-assert
7280 ocaml-ppx-base
7281 ocaml-ppx-hash
7282 ocaml-ppx-inline-test
7283 ocaml-ppx-jane
7284 ocaml-ppx-sexp-conv
7285 ocaml-ppx-sexp-message
7286 ocaml-sexplib
7287 ocaml-splittable-random
7288 ocaml-stdio
7289 ocaml-time-now
7290 ocaml-typerep
7291 ocaml-variantslib))
7292 (home-page "https://github.com/janestreet/core")
7293 (synopsis "Alternative to OCaml's standard library")
7294 (description "The Core suite of libraries is an alternative to OCaml's
7295 standard library that was developed by Jane Street.")
7296 ;; Also contains parts of OCaml, relicensed to expat, as permitted
7297 ;; by OCaml's license for consortium members (see THIRD-PARTY.txt).
7298 (license license:expat)))
7299
7300 (define-public ocaml4.07-core
7301 (package-with-ocaml4.07
7302 (package
7303 (inherit ocaml-core)
7304 (version "0.11.3")
7305 (source (origin
7306 (method git-fetch)
7307 (uri (git-reference
7308 (url "https://github.com/janestreet/core")
7309 (commit (string-append "v" version))))
7310 (file-name (git-file-name "ocaml4.07-core" version))
7311 (sha256
7312 (base32
7313 "0pzl8n09z4f3i7z2wq4cjxfqrr8mj6xcdp7rbg0nxap2zdhjgvrq"))))
7314 (propagated-inputs
7315 (list ocaml-base
7316 ocaml4.07-configurator
7317 ocaml-core-kernel
7318 ocaml-ppx-assert
7319 ocaml-ppx-jane
7320 ocaml-sexplib
7321 ocaml-spawn
7322 ocaml-stdio
7323 ocaml-migrate-parsetree
7324 ocaml-ppxlib))
7325 ;; Also contains parts of OCaml, relicensed to asl2.0, as permitted
7326 ;; by OCaml's license for consortium members (see THIRD-PARTY.txt).
7327 (license license:asl2.0))))
7328
7329 (define-public ocaml-int-repr
7330 (package
7331 (name "ocaml-int-repr")
7332 (version "0.15.0")
7333 (source
7334 (origin
7335 (method git-fetch)
7336 (uri (git-reference
7337 (url "https://github.com/janestreet/int_repr")
7338 (commit (string-append "v" version))))
7339 (file-name (git-file-name name version))
7340 (sha256
7341 (base32 "0ph88ym3s9dk30n17si2xam40sp8wv1xffw5cl3bskc2vfya1nvl"))))
7342 (build-system dune-build-system)
7343 (arguments
7344 `(#:tests? #f)) ;no tests
7345 (propagated-inputs (list ocaml-base ocaml-ppx-jane))
7346 (properties `((upstream-name . "int_repr")))
7347 (home-page "https://github.com/janestreet/int_repr")
7348 (synopsis "Integers of various widths")
7349 (description "Integers of various widths.")
7350 (license license:expat)))
7351
7352 (define-public ocaml-core-kernel
7353 (package
7354 (name "ocaml-core-kernel")
7355 (version "0.15.0")
7356 (source
7357 (origin
7358 (method git-fetch)
7359 (uri (git-reference
7360 (url "https://github.com/janestreet/core_kernel")
7361 (commit (string-append "v" version))))
7362 (file-name (git-file-name name version))
7363 (sha256
7364 (base32 "05mb4vbf293iq1xx4acyrmi9cgcw6capwrsa54ils62alby6w6yq"))))
7365 (build-system dune-build-system)
7366 (arguments
7367 ;; Cyclic dependency with ocaml-core
7368 `(#:tests? #f))
7369 (propagated-inputs
7370 (list ocaml-base ocaml-core ocaml-int-repr ocaml-ppx-jane))
7371 (properties `((upstream-name . "core_kernel")
7372 (ocaml4.07-variant . ,(delay ocaml4.07-core-kernel))))
7373 (home-page "https://github.com/janestreet/core_kernel")
7374 (synopsis "Portable standard library for OCaml")
7375 (description "Core is an alternative to the OCaml standard library.
7376
7377 Core_kernel is the system-independent part of Core. It is aimed for cases when
7378 the full Core is not available, such as in Javascript.")
7379 (license license:expat)))
7380
7381 (define-public ocaml4.07-core-kernel
7382 (package-with-ocaml4.07
7383 (package
7384 (inherit ocaml-core-kernel)
7385 (version "0.11.1")
7386 (source (origin
7387 (method git-fetch)
7388 (uri (git-reference
7389 (url "https://github.com/janestreet/core_kernel")
7390 (commit (string-append "v" version))))
7391 (file-name (git-file-name "ocaml4.07-core-kernel" version))
7392 (sha256
7393 (base32
7394 "1dg7ygy7i64c5gaakb1cp1b26p9ks81vbxmb8fd7jff2q60j2z2g"))))
7395 (propagated-inputs
7396 (list ocaml-base
7397 ocaml-bin-prot
7398 ocaml4.07-configurator
7399 ocaml-fieldslib
7400 ocaml-jane-street-headers
7401 ocaml-ppx-assert
7402 ocaml-ppx-base
7403 ocaml-ppx-hash
7404 ocaml-ppx-inline-test
7405 ocaml-ppx-jane
7406 ocaml-ppx-sexp-conv
7407 ocaml-ppx-sexp-message
7408 ocaml-sexplib
7409 ocaml-splittable-random
7410 ocaml-stdio
7411 ocaml-typerep
7412 ocaml-variantslib
7413 ocaml-migrate-parsetree))
7414 (properties '())
7415 (license (list
7416 ;; this package and parts of OCaml, relicensed by janestreet
7417 license:asl2.0
7418 ;; MLton and sjs
7419 license:expat)))))
7420
7421 (define-public ocaml-timezone
7422 (package
7423 (name "ocaml-timezone")
7424 (version "0.15.0")
7425 (source
7426 (origin
7427 (method git-fetch)
7428 (uri (git-reference
7429 (url "https://github.com/janestreet/timezone")
7430 (commit (string-append "v" version))))
7431 (file-name (git-file-name name version))
7432 (sha256
7433 (base32 "00a007aji5rbz42kgbq1w90py6fm9k9akycs5abkcfll5rd0cbhx"))))
7434 (build-system dune-build-system)
7435 (propagated-inputs (list ocaml-core ocaml-ppx-jane))
7436 (home-page "https://github.com/janestreet/timezone")
7437 (synopsis "Time-zone handling")
7438 (description
7439 "Timezone handles parsing timezone data and create @code{Timezone.t}
7440 that can later be used to manipulate time in core_kernel or core.")
7441 (license license:expat)))
7442
7443 (define-public ocaml-markup
7444 (package
7445 (name "ocaml-markup")
7446 (version "1.0.3")
7447 (home-page "https://github.com/aantron/markup.ml")
7448 (source
7449 (origin
7450 (method git-fetch)
7451 (uri (git-reference
7452 (url (string-append home-page ".git"))
7453 (commit version)))
7454 (file-name (git-file-name name version))
7455 (sha256
7456 (base32
7457 "1acgcbhx4rxx92rf65lsns588d6zzfrin2pnpkx24jw5vbgz7idn"))))
7458 (build-system dune-build-system)
7459 (arguments
7460 `(#:package "markup"))
7461 (propagated-inputs
7462 (list ocaml-bisect-ppx ocaml-uchar ocaml-uutf ocaml-lwt))
7463 (native-inputs
7464 (list ocaml-ounit2 pkg-config))
7465 (properties
7466 `((ocaml4.07-variant . ,(delay (package-with-ocaml4.07 ocaml-markup0.8.0)))))
7467 (synopsis "Error-recovering functional HTML5 and XML parsers and writers")
7468 (description "Markup.ml provides an HTML parser and an XML parser. The
7469 parsers are wrapped in a simple interface: they are functions that transform
7470 byte streams to parsing signal streams. Streams can be manipulated in various
7471 ways, such as processing by fold, filter, and map, assembly into DOM tree
7472 structures, or serialization back to HTML or XML.
7473
7474 Both parsers are based on their respective standards. The HTML parser, in
7475 particular, is based on the state machines defined in HTML5.
7476
7477 The parsers are error-recovering by default, and accept fragments. This makes
7478 it very easy to get a best-effort parse of some input. The parsers can,
7479 however, be easily configured to be strict, and to accept only full documents.
7480
7481 Apart from this, the parsers are streaming (do not build up a document in
7482 memory), non-blocking (can be used with threading libraries), lazy (do not
7483 consume input unless the signal stream is being read), and process the input in
7484 a single pass. They automatically detect the character encoding of the input
7485 stream, and convert everything to UTF-8.")
7486 (license license:bsd-3)))
7487
7488 ;; ocaml-markup 1.0.0 can not be built with old version of dune used in
7489 ;; package-with-ocaml4.07
7490 (define-public ocaml-markup0.8.0
7491 (package
7492 (inherit ocaml-markup)
7493 (name "ocaml-markup")
7494 (version "0.8.0")
7495 (home-page "https://github.com/aantron/markup.ml")
7496 (source
7497 (origin
7498 (method git-fetch)
7499 (uri (git-reference
7500 (url (string-append home-page ".git"))
7501 (commit version)))
7502 (file-name (git-file-name name version))
7503 (sha256
7504 (base32
7505 "0aif4abvfmi9xc1pvw5n5rbm6rzkkpsxyvdn0lanr33rjpvkwdlm"))))
7506 (native-inputs
7507 (list ocaml-ounit pkg-config))
7508 (properties '())))
7509
7510 (define-public ocaml-tyxml
7511 (package
7512 (name "ocaml-tyxml")
7513 (version "4.5.0")
7514 (source
7515 (origin
7516 (method git-fetch)
7517 (uri (git-reference
7518 (url "https://github.com/ocsigen/tyxml")
7519 (commit version)))
7520 (file-name (git-file-name name version))
7521 (sha256
7522 (base32
7523 "0bh66wknc7sx2r63kscp0hg6h73dkv6qpkx0cdz2qp7p28pg2ixz"))))
7524 (build-system dune-build-system)
7525 (inputs
7526 (list ocaml-re ocaml-seq ocaml-uutf))
7527 (native-inputs
7528 (list ocaml-alcotest))
7529 (arguments `(#:package "tyxml"))
7530 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-tyxml))))
7531 (home-page "https://github.com/ocsigen/tyxml/")
7532 (synopsis "TyXML is a library for building correct HTML and SVG documents")
7533 (description "TyXML provides a set of convenient combinators that uses the
7534 OCaml type system to ensure the validity of the generated documents. TyXML can
7535 be used with any representation of HTML and SVG: the textual one, provided
7536 directly by this package, or DOM trees (@code{js_of_ocaml-tyxml}) virtual DOM
7537 (@code{virtual-dom}) and reactive or replicated trees (@code{eliom}). You can
7538 also create your own representation and use it to instantiate a new set of
7539 combinators.")
7540 (license license:lgpl2.1)))
7541
7542 (define-public ocaml4.07-tyxml
7543 (package-with-ocaml4.07
7544 (package
7545 (inherit ocaml-tyxml)
7546 (version "4.4.0")
7547 (source (origin
7548 (method git-fetch)
7549 (uri (git-reference
7550 (url "https://github.com/ocsigen/tyxml")
7551 (commit version)))
7552 (file-name (git-file-name "ocaml-tyxml" version))
7553 (sha256
7554 (base32
7555 "1hw4phyadcfgywgh5sj87i76gp56qwxzwlcpfdwjbf6ggag9clmd"))))
7556 (properties '()))))
7557
7558 (define-public ocaml-bisect-ppx
7559 (package
7560 (name "ocaml-bisect-ppx")
7561 (version "2.8.1")
7562 (source
7563 (origin
7564 (method git-fetch)
7565 (uri (git-reference
7566 (url "https://github.com/aantron/bisect_ppx")
7567 (commit version)))
7568 (file-name (git-file-name name version))
7569 (sha256
7570 (base32
7571 "0562rwwnhqlf5alxl1wd1n0xs0k4aamxafrh8bbmh5yl3i5rxrx4"))))
7572 (build-system dune-build-system)
7573 (propagated-inputs
7574 (list ocaml-ppxlib ocaml-cmdliner))
7575 (arguments
7576 ;; Tests require ocamlformat which would lead to circular dependencies
7577 '(#:tests? #f))
7578 (properties `((upstream-name . "bisect_ppx")
7579 (ocaml4.07-variant . ,(delay ocaml4.07-bisect-ppx))))
7580 (home-page "https://github.com/aantron/bisect_ppx")
7581 (synopsis "Code coverage for OCaml")
7582 (description "Bisect_ppx helps you test thoroughly. It is a small
7583 preprocessor that inserts instrumentation at places in your code, such as
7584 if-then-else and match expressions. After you run tests, Bisect_ppx gives a
7585 nice HTML report showing which places were visited and which were missed.
7586
7587 Usage is simple - add package bisect_ppx when building tests, run your tests,
7588 then run the Bisect_ppx report tool on the generated visitation files.")
7589 (license license:mpl2.0)))
7590
7591 (define-public ocaml4.07-bisect-ppx
7592 (package-with-ocaml4.07
7593 (package
7594 (inherit ocaml-bisect-ppx)
7595 (version "2.4.0")
7596 (source
7597 (origin
7598 (method git-fetch)
7599 (uri (git-reference
7600 (url "https://github.com/aantron/bisect_ppx")
7601 (commit version)))
7602 (file-name (git-file-name "ocaml-bisect-ppx" version))
7603 (sha256
7604 (base32
7605 "1njs8xc108rrpx5am5zhhcn6vjva7rsphm8034qp5lgyvnhfgh7q"))))
7606 (propagated-inputs
7607 `(("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
7608 ("ocaml-ppx-tools-versioned" ,ocaml4.07-ppx-tools-versioned)
7609 ,@(package-propagated-inputs ocaml-bisect-ppx)))
7610 (native-inputs
7611 `(("ocaml-ounit2" ,ocaml-ounit2)))
7612 (arguments
7613 `(#:test-target "."
7614 ;; tests require git and network
7615 #:tests? #f))
7616 (properties '((upstream-name . "bisect_ppx"))))))
7617
7618 (define-public ocaml-odoc
7619 (package
7620 (name "ocaml-odoc")
7621 ;; 2.2.0-alpha contains fixes for Dune 3.0 compatibility
7622 ;; (https://github.com/ocaml/odoc/commit/6ac97f3148f7791ec7451785ef4dbd9ca0daf2d1)
7623 (version "2.2.0-alpha")
7624 (source
7625 (origin
7626 (method git-fetch)
7627 (uri (git-reference
7628 (url "https://github.com/ocaml/odoc")
7629 (commit version)))
7630 (file-name (git-file-name name version))
7631 (sha256
7632 (base32 "07zjkk455l51i29lcayzrc1q8j5bvbv97sscv8yhcj7x6h6q2nag"))))
7633 (build-system dune-build-system)
7634 (arguments
7635 `(#:phases
7636 (modify-phases %standard-phases
7637 (add-after 'unpack 'fix-test
7638 (lambda _
7639 ;; test results expects #!/bin/sh but gets a store path instead
7640 (substitute* "test/xref2/with.t/run.t"
7641 (("#!/bin/sh") (string-append "#!" (which "sh")))))))))
7642 (inputs
7643 (list ocaml-astring
7644 ocaml-bisect-ppx
7645 ocaml-cmdliner
7646 ocaml-fmt
7647 ocaml-fpath
7648 ocaml-logs
7649 ocaml-migrate-parsetree
7650 ocaml-odoc-parser
7651 ocaml-re
7652 ocaml-result
7653 ocaml-tyxml))
7654 (native-inputs
7655 (list ocaml-alcotest
7656 ocaml-bos
7657 ocaml-cppo
7658 ocaml-findlib
7659 ocaml-lwt
7660 ocaml-markup
7661 ocaml-ppx-expect
7662 ocaml-version
7663 ocaml-yojson
7664 jq))
7665 (properties `((ocaml4.07-variant . ,(delay ocaml4.07-odoc))))
7666 (home-page "https://github.com/ocaml/odoc")
7667 (synopsis "OCaml documentation generator")
7668 (description "Odoc is a documentation generator for OCaml. It reads
7669 @emph{doc comments}, delimited with @code{(** ... *)}, and outputs
7670 @acronym{HTML}.
7671
7672 Text inside doc comments is marked up in ocamldoc syntax. Odoc's main
7673 advantage over ocamldoc is an accurate cross-referencer, which handles the
7674 complexity of the OCaml module system.")
7675 (license license:isc)))
7676
7677 (define-public ocaml-odoc-parser
7678 (package
7679 (name "ocaml-odoc-parser")
7680 (version "1.0.0")
7681 (source
7682 (origin
7683 (method git-fetch)
7684 (uri (git-reference
7685 (url "https://github.com/ocaml-doc/odoc-parser")
7686 (commit version)))
7687 (file-name (git-file-name name version))
7688 (sha256
7689 (base32
7690 "0mvwbnla0wd29bc7ckwpb494qv7p616cx8hnm0zg36np7v3zwy4w"))))
7691 (build-system dune-build-system)
7692 (propagated-inputs
7693 (list ocaml-astring ocaml-result))
7694 (native-inputs
7695 (list ocaml-ppx-expect))
7696 (home-page "https://github.com/ocaml-doc/odoc-parser")
7697 (synopsis "Parser for ocaml documentation comments")
7698 (description
7699 "This package provides a library for parsing the contents of OCaml
7700 documentation comments, formatted using Odoc syntax, an extension of the
7701 language understood by ocamldoc.")
7702 (license license:isc)))
7703
7704 ;; version 1.5.2 requires ocaml-markdown 1.0.0 which does not compile
7705 ;; with old version of dune used in package-with-ocaml4.07
7706 (define-public ocaml4.07-odoc
7707 (package-with-ocaml4.07
7708 (package
7709 (inherit ocaml-odoc)
7710 (name "ocaml-odoc")
7711 (version "1.5.1")
7712 (source
7713 (origin
7714 (method git-fetch)
7715 (uri (git-reference
7716 (url "https://github.com/ocaml/odoc")
7717 (commit version)))
7718 (file-name (git-file-name name version))
7719 (sha256
7720 (base32 "0z2nisg1vb5xlk41hqw8drvj90v52wli7zvnih6a844cg6xsvvj2"))))
7721 (arguments '())
7722 (inputs
7723 `(("ocaml-alcotest" ,ocaml-alcotest)
7724 ("ocaml-markup" ,ocaml-markup)
7725 ("ocaml-sexplib" ,ocaml-sexplib)
7726 ("ocaml-re" ,ocaml-re)
7727 ("ocaml-uutf" ,ocaml-uutf)))
7728 (native-inputs
7729 `(("ocaml-astring" ,ocaml-astring)
7730 ("ocaml-cmdliner" ,ocaml-cmdliner)
7731 ("ocaml-cppo" ,ocaml-cppo)
7732 ("ocaml-fpath" ,ocaml-fpath)
7733 ("ocaml-result" ,ocaml-result)
7734 ("ocaml-tyxml" ,ocaml-tyxml)
7735 ("ocaml-bisect-ppx" ,ocaml-bisect-ppx)
7736 ("tidy-html" ,tidy-html)))
7737 (properties '()))))
7738
7739 (define-public ocaml-fftw3
7740 (package
7741 (name "ocaml-fftw3")
7742 (version "0.8.5")
7743 (source
7744 (origin
7745 (method git-fetch)
7746 (uri (git-reference
7747 (url "https://github.com/Chris00/fftw-ocaml")
7748 (commit version)))
7749 (file-name (git-file-name name version))
7750 (sha256
7751 (base32
7752 "07ljbin9dsclsqh24p7haqjccz1w828sf5xfwlzl298d4a6zsbhs"))))
7753 (build-system dune-build-system)
7754 (arguments
7755 `(#:test-target "tests"))
7756 (propagated-inputs
7757 (list fftw fftwf))
7758 (native-inputs
7759 (list ocaml-cppo ocaml-lacaml))
7760 (home-page
7761 "https://github.com/Chris00/fftw-ocaml")
7762 (synopsis
7763 "Bindings to FFTW3")
7764 (description
7765 "Bindings providing OCaml support for the seminal Fast Fourier Transform
7766 library FFTW.")
7767 (license license:lgpl2.1))) ; with static linking exception.
7768
7769 (define-public ocaml-lacaml
7770 (package
7771 (name "ocaml-lacaml")
7772 (version "11.0.8")
7773 (source
7774 (origin
7775 (method git-fetch)
7776 (uri (git-reference
7777 (url "https://github.com/mmottl/lacaml")
7778 (commit version)))
7779 (file-name (git-file-name name version))
7780 (sha256
7781 (base32
7782 "115535kphchh2a434b48b408x9794j8zzrsdmacsgqdsrgy3rck4"))
7783 (modules '((guix build utils)))
7784 (snippet '(substitute* '("src/dune" "src/config/dune")
7785 (("-march=native") "")))))
7786 (properties '((tunable? . #t)))
7787 (build-system dune-build-system)
7788 (arguments
7789 `(#:tests? #f)) ; No test target.
7790 (native-inputs
7791 (list openblas lapack ocaml-base ocaml-stdio))
7792 (home-page "https://mmottl.github.io/lacaml/")
7793 (synopsis
7794 "OCaml-bindings to BLAS and LAPACK")
7795 (description
7796 "Lacaml interfaces the BLAS-library (Basic Linear Algebra Subroutines) and
7797 LAPACK-library (Linear Algebra routines). It also contains many additional
7798 convenience functions for vectors and matrices.")
7799 (license license:lgpl2.1)))
7800
7801 (define-public ocaml-cairo2
7802 (package
7803 (name "ocaml-cairo2")
7804 (version "0.6.3")
7805 (source (origin
7806 (method git-fetch)
7807 (uri (git-reference
7808 (url "https://github.com/Chris00/ocaml-cairo")
7809 (commit version)))
7810 (file-name (git-file-name name version))
7811 (sha256
7812 (base32
7813 "1m0wh0s0sqjfa3mgq99lwk0dsg0bwxipaz93hq18m0lz5fqxib1m"))))
7814 (build-system dune-build-system)
7815 (arguments
7816 `(#:test-target "tests"))
7817 (inputs
7818 `(("cairo" ,cairo)
7819 ("gtk+-2" ,gtk+-2)
7820 ("lablgtk" ,lablgtk)))
7821 (native-inputs
7822 (list pkg-config))
7823 (home-page "https://github.com/Chris00/ocaml-cairo")
7824 (synopsis "Binding to Cairo, a 2D Vector Graphics Library")
7825 (description "Ocaml-cairo2 is a binding to Cairo, a 2D graphics library
7826 with support for multiple output devices. Currently supported output targets
7827 include the X Window System, Quartz, Win32, image buffers, PostScript, PDF,
7828 and SVG file output.")
7829 (license license:lgpl3+)))
7830
7831 (define-public ocaml-version
7832 (package
7833 (name "ocaml-version")
7834 (version "3.4.0")
7835 (source
7836 (origin
7837 (method git-fetch)
7838 (uri (git-reference
7839 (url "https://github.com/ocurrent/ocaml-version")
7840 (commit (string-append "v" version))))
7841 (file-name (git-file-name name version))
7842 (sha256
7843 (base32
7844 "1c13zk1qna59m5z9jx7da3p7cxd48scpyk7zg7gi6gc6hx5hhjx8"))))
7845 (build-system dune-build-system)
7846 (arguments `(#:tests? #f)) ; no tests
7847 (properties '((upstream-name . "ocaml-version")))
7848 (home-page
7849 "https://github.com/ocurrent/ocaml-version")
7850 (synopsis
7851 "Manipulate, parse and generate OCaml compiler version strings")
7852 (description
7853 "This library provides facilities to parse version numbers of the OCaml
7854 compiler, and enumerates the various official OCaml releases and configuration
7855 variants.")
7856 (license license:isc)))
7857
7858 (define-public ocaml-mdx
7859 (package
7860 (name "ocaml-mdx")
7861 (version "2.1.0")
7862 (source (origin
7863 (method git-fetch)
7864 (uri (git-reference
7865 (url "https://github.com/realworldocaml/mdx")
7866 (commit version)))
7867 (file-name (git-file-name name version))
7868 (sha256
7869 (base32
7870 "1w1givvhwv9jzj9zbg4mmlpb35sqi75w83r99p2z50bdr69fdf57"))))
7871 (build-system dune-build-system)
7872 (arguments
7873 `(#:phases
7874 (modify-phases %standard-phases
7875 (add-after 'unpack 'fix-test-format
7876 (lambda _
7877 ;; cmdliner changed the format and the tests fail
7878 (substitute* '("test/bin/mdx-test/misc/no-such-file/test.expected"
7879 "test/bin/mdx-test/misc/no-such-prelude/test.expected")
7880 (("`") "'")
7881 (("COMMAND") "[COMMAND]")
7882 (("\\.\\.\\.") "…")))))))
7883 (inputs
7884 (list ocaml-fmt
7885 ocaml-astring
7886 ocaml-logs
7887 ocaml-cmdliner
7888 ocaml-re
7889 ocaml-result
7890 ocaml-odoc
7891 ocaml-odoc-parser
7892 ocaml-version))
7893 (native-inputs
7894 (list ocaml-cppo ocaml-lwt ocaml-alcotest))
7895 (home-page
7896 "https://github.com/realworldocaml/mdx")
7897 (synopsis
7898 "Executable code blocks inside markdown files")
7899 (description
7900 "@code{ocaml-mdx} executes code blocks inside markdown files.
7901 There are (currently) two sub-commands, corresponding
7902 to two modes of operations: pre-processing (@code{ocaml-mdx pp})
7903 and tests (@code{ocaml-mdx test}]).
7904
7905 The pre-processor mode allows mixing documentation and code,
7906 and to practice @dfn{literate programming} using markdown and OCaml.
7907
7908 The test mode ensures that shell scripts and OCaml fragments
7909 in the documentation always stays up-to-date.
7910
7911 @code{ocaml-mdx} is released as two binaries called @code{ocaml-mdx} and
7912 @code{mdx} which are the same, mdx being the deprecated name, kept for now for
7913 compatibility.")
7914 (license license:isc)))
7915
7916 (define-public ocaml-mparser
7917 (package
7918 (name "ocaml-mparser")
7919 (version "1.3")
7920 (source
7921 (origin
7922 (method git-fetch)
7923 (uri (git-reference
7924 (url "https://github.com/murmour/mparser")
7925 (commit version)))
7926 (file-name (git-file-name name version))
7927 (sha256
7928 (base32
7929 "16j19v16r42gcsii6a337zrs5cxnf12ig0vaysxyr7sq5lplqhkx"))))
7930 (build-system dune-build-system)
7931 (arguments
7932 ;; No tests.
7933 '(#:package "mparser"
7934 #:tests? #f))
7935 (home-page "https://github.com/murmour/mparser")
7936 (synopsis "Simple monadic parser combinator library")
7937 (description
7938 "This library implements a rather complete and efficient monadic parser
7939 combinator library similar to the Parsec library for Haskell by Daan Leijen and
7940 the FParsec library for FSharp by Stephan Tolksdorf.")
7941 ;; With static linking exception.
7942 (license license:lgpl2.1+)))
7943
7944 (define-public ocaml-mparser-re
7945 (package
7946 (inherit ocaml-mparser)
7947 (name "ocaml-mparser-re")
7948 (arguments
7949 ;; No tests.
7950 '(#:package "mparser-re"
7951 #:tests? #f))
7952 (propagated-inputs
7953 (list ocaml-mparser ocaml-re))
7954 (synopsis "MParser plugin for RE-based regular expressions")
7955 (description "This package provides RE-based regular expressions
7956 support for Mparser.")))
7957
7958 (define-public ocaml-mparser-pcre
7959 (package
7960 (inherit ocaml-mparser)
7961 (name "ocaml-mparser-pcre")
7962 (arguments
7963 ;; No tests.
7964 '(#:package "mparser-pcre"
7965 #:tests? #f))
7966 (propagated-inputs
7967 (list ocaml-mparser ocaml-pcre))
7968 (synopsis "MParser plugin for PCRE-based regular expressions")
7969 (description "This package provides PCRE-based regular expressions
7970 support for Mparser.")))
7971
7972 (define-public lablgtk3
7973 (package
7974 (name "lablgtk")
7975 (version "3.1.1")
7976 (source (origin
7977 (method git-fetch)
7978 (uri (git-reference
7979 (url "https://github.com/garrigue/lablgtk")
7980 (commit version)))
7981 (file-name (git-file-name name version))
7982 (sha256
7983 (base32
7984 "11qfc39cmwfwfpwmjh6wh98zwdv6p73bv8hqwcsss869vs1r7gmn"))))
7985 (build-system dune-build-system)
7986 (arguments
7987 `(#:test-target "."
7988 #:phases
7989 (modify-phases %standard-phases
7990 (add-before 'build 'make-writable
7991 (lambda _
7992 (for-each (lambda (file)
7993 (chmod file #o644))
7994 (find-files "." "."))))
7995 (add-before 'build 'set-version
7996 (lambda _
7997 (substitute* "dune-project"
7998 (("\\(name lablgtk3\\)")
7999 (string-append "(name lablgtk3)\n(version " ,version ")"))))))))
8000 (propagated-inputs
8001 (list ocaml-cairo2))
8002 (inputs
8003 (list camlp5 gtk+ gtksourceview-3 gtkspell3))
8004 (native-inputs
8005 (list pkg-config))
8006 (home-page "https://github.com/garrigue/lablgtk")
8007 (synopsis "OCaml interface to GTK+3")
8008 (description "LablGtk is an OCaml interface to GTK+ 1.2, 2.x and 3.x. It
8009 provides a strongly-typed object-oriented interface that is compatible with the
8010 dynamic typing of GTK+. Most widgets and methods are available. LablGtk
8011 also provides bindings to gdk-pixbuf, the GLArea widget (in combination with
8012 LablGL), gnomecanvas, gnomeui, gtksourceview, gtkspell, libglade (and it can
8013 generate OCaml code from .glade files), libpanel, librsvg and quartz.")
8014 ;; Version 2 only, with linking exception.
8015 (license license:lgpl2.0)))
8016
8017 (define-public ocaml-reactivedata
8018 (package
8019 (name "ocaml-reactivedata")
8020 (version "0.3")
8021 (source (origin
8022 (method git-fetch)
8023 (uri (git-reference
8024 (url "https://github.com/ocsigen/reactiveData")
8025 (commit version)))
8026 (file-name (git-file-name name version))
8027 (sha256
8028 (base32
8029 "0gmpfnw08c7hx4bsgrgvp6w7pq2ghqxq3qd1cbdyscbg9n22jrca"))))
8030 (arguments
8031 `(#:tests? #f)) ;no tests
8032 (build-system dune-build-system)
8033 (properties `((upstream-name . "reactiveData")))
8034 (propagated-inputs
8035 (list ocaml-react))
8036 (home-page "https://github.com/ocsigen/reactiveData")
8037 (synopsis "Declarative events and signals for OCaml")
8038 (description
8039 "React is an OCaml module for functional reactive programming (FRP). It
8040 provides support to program with time varying values: declarative events and
8041 signals. React doesn't define any primitive event or signal, it lets the
8042 client chooses the concrete timeline.")
8043 (license license:lgpl2.1+)))
8044
8045 (define-public ocaml-uucd
8046 (package
8047 (name "ocaml-uucd")
8048 (version "14.0.0")
8049 (source
8050 (origin
8051 (method url-fetch)
8052 (uri (string-append "https://erratique.ch/software/uucd/releases/"
8053 "uucd-" version ".tbz"))
8054 (sha256
8055 (base32
8056 "0fc737v5gj3339jx4x9xr096lxrpwvp6vaiylhavcvsglcwbgm30"))))
8057 (build-system ocaml-build-system)
8058 (arguments
8059 '(#:build-flags '("build" "--tests" "true")
8060 #:phases
8061 (modify-phases %standard-phases
8062 (delete 'configure))))
8063 (propagated-inputs
8064 (list ocaml-xmlm))
8065 (native-inputs
8066 (list opam ocaml-findlib ocamlbuild ocaml-topkg))
8067 (home-page "https://erratique.ch/software/uucd")
8068 (synopsis "Unicode character database decoder for OCaml")
8069 (description "Uucd is an OCaml module to decode the data of the Unicode
8070 character database from its XML representation. It provides high-level (but
8071 not necessarily efficient) access to the data so that efficient
8072 representations can be extracted.")
8073 (license license:isc)))
8074
8075 (define-public ocaml-uucp
8076 (package
8077 (name "ocaml-uucp")
8078 (version "14.0.0")
8079 (source
8080 (origin
8081 (method url-fetch)
8082 (uri (string-append "https://erratique.ch/software/uucp/releases/"
8083 "uucp-" version ".tbz"))
8084 (sha256
8085 (base32
8086 "1yx9nih3d9prb9zizq8fzmmqylf24a6yifhf81h33znrj5xn1mpj"))))
8087 (build-system ocaml-build-system)
8088 (arguments
8089 '(#:build-flags '("build" "--tests" "true")
8090 #:phases
8091 (modify-phases %standard-phases
8092 (delete 'configure))))
8093 (native-inputs
8094 (list opam
8095 ocaml-findlib
8096 ocamlbuild
8097 ocaml-topkg
8098 ocaml-uucd
8099 ocaml-uunf
8100 ocaml-uutf))
8101 (home-page "https://erratique.ch/software/uucp")
8102 (synopsis "Unicode character properties for OCaml")
8103 (description "Uucp is an OCaml library providing efficient access to a
8104 selection of character properties of the Unicode character database.")
8105 (license license:isc)))
8106
8107 (define-public ocaml-uuseg
8108 (package
8109 (name "ocaml-uuseg")
8110 (version "14.0.0")
8111 (source
8112 (origin
8113 (method url-fetch)
8114 (uri (string-append "https://erratique.ch/software/uuseg/releases/"
8115 "uuseg-" version ".tbz"))
8116 (sha256
8117 (base32
8118 "1g9zyzjkhqxgbb9mh3cgaawscwdazv6y8kdqvmy6yhnimmfqv25p"))))
8119 (build-system ocaml-build-system)
8120 (arguments
8121 '(#:build-flags '("build" "--tests" "true")
8122 #:phases
8123 (modify-phases %standard-phases
8124 (delete 'configure))))
8125 (propagated-inputs
8126 (list ocaml-uucp ocaml-uutf ocaml-cmdliner))
8127 (native-inputs
8128 (list opam ocaml-findlib ocamlbuild ocaml-topkg))
8129 (home-page "https://erratique.ch/software/uuseg")
8130 (synopsis "Unicode text segmentation for OCaml")
8131 (description "Uuseg is an OCaml library for segmenting Unicode text. It
8132 implements the locale independent Unicode text segmentation algorithms to
8133 detect grapheme cluster, word and sentence boundaries and the Unicode line
8134 breaking algorithm to detect line break opportunities.
8135
8136 The library is independent from any IO mechanism or Unicode text data
8137 structure and it can process text without a complete in-memory
8138 representation.")
8139 (license license:isc)))
8140
8141 (define-public ocaml-fix
8142 (package
8143 (name "ocaml-fix")
8144 (version "20220121")
8145 (source
8146 (origin
8147 (method git-fetch)
8148 (uri (git-reference
8149 (url "https://gitlab.inria.fr/fpottier/fix")
8150 (commit version)))
8151 (file-name (git-file-name name version))
8152 (sha256
8153 (base32
8154 "15785v43jcbqsw1y653cnb89alrcnbdri1h0w6zl6p7769ja9rdj"))))
8155 (build-system dune-build-system)
8156 (arguments
8157 ;; No tests.
8158 '(#:tests? #f))
8159 (home-page "https://gitlab.inria.fr/fpottier/fix")
8160 (synopsis "Facilities for memoization and fixed points")
8161 (description "This package provides helpers with various constructions
8162 that involve memoization and recursion.")
8163 (license license:lgpl2.0)))
8164
8165 (define-public ocaml-dune-build-info
8166 (package
8167 (inherit dune)
8168 (name "ocaml-dune-build-info")
8169 (build-system dune-build-system)
8170 (arguments
8171 '(#:package "dune-build-info"
8172 ;; No separate test suite from dune.
8173 #:tests? #f))
8174 (propagated-inputs
8175 (list ocaml-odoc))
8176 (synopsis "Embed build information inside an executable")
8177 (description "This package allows one to access information about how the
8178 executable was built, such as the version of the project at which it was built
8179 or the list of statically linked libraries with their versions. It supports
8180 reporting the version from the version control system during development to
8181 get an precise reference of when the executable was built.")))
8182
8183 (define-public ocaml-either
8184 (package
8185 (name "ocaml-either")
8186 (version "1.0.0")
8187 (source
8188 (origin
8189 (method git-fetch)
8190 (uri (git-reference
8191 (url "https://github.com/mirage/either")
8192 (commit version)))
8193 (file-name (git-file-name name version))
8194 (sha256
8195 (base32 "099p1m24vz5i0043zcfp88krzjsa2qbrphrm4bnx84gif5vgkxwm"))))
8196 (build-system dune-build-system)
8197 (arguments
8198 ;; no tests
8199 `(#:tests? #f))
8200 (home-page "https://github.com/mirage/either")
8201 (synopsis "Compatibility Either module")
8202 (description "This library is a compatibility module for the Either module
8203 defined in OCaml 4.12.0.")
8204 (license license:expat)))
8205
8206 (define-public ocamlformat
8207 (package
8208 (name "ocamlformat")
8209 (version "0.22.4")
8210 (source
8211 (origin
8212 (method git-fetch)
8213 (uri (git-reference
8214 (url "https://github.com/ocaml-ppx/ocamlformat")
8215 (commit version)))
8216 (file-name (git-file-name name version))
8217 (sha256
8218 (base32
8219 "171lq3vx4y8xj4by5zy93isx8nhg6ysxg1hxmkqkq16fdaiz8mnc"))))
8220 (build-system dune-build-system)
8221 (arguments
8222 '(#:package "ocamlformat"
8223 #:phases
8224 (modify-phases %standard-phases
8225 ;; Tests related to other packages
8226 (add-after 'unpack 'remove-unrelated-tests
8227 (lambda _
8228 (delete-file-recursively "test/rpc")))
8229 (add-after 'unpack 'fix-test-format
8230 (lambda _
8231 (substitute* "test/cli/repl_file_errors.t/run.t"
8232 ((" ;;") ";;")))))))
8233 (propagated-inputs
8234 (list ocaml-version
8235 ocaml-base
8236 ocaml-cmdliner
8237 ocaml-dune-build-info
8238 ocaml-either
8239 ocaml-fix
8240 ocaml-fpath
8241 ocaml-menhir
8242 ocaml-odoc
8243 ocaml-ppxlib
8244 ocaml-re
8245 ocaml-odoc-parser
8246 ocaml-stdio
8247 ocaml-uuseg
8248 ocaml-uutf))
8249 (native-inputs
8250 (list git-minimal ocaml-alcotest ocaml-ocp-indent ocaml-bisect-ppx))
8251 (home-page "https://github.com/ocaml-ppx/ocamlformat")
8252 (synopsis "Auto-formatter for OCaml code")
8253 (description "OCamlFormat is a tool to automatically format OCaml code in
8254 a uniform style.")
8255 (license license:expat)))
8256
8257 (define-public ocaml-bigstringaf
8258 (package
8259 (name "ocaml-bigstringaf")
8260 (version "0.9.0")
8261 (home-page "https://github.com/inhabitedtype/bigstringaf")
8262 (source
8263 (origin
8264 (method git-fetch)
8265 (uri (git-reference
8266 (url home-page)
8267 (commit version)))
8268 (file-name (git-file-name name version))
8269 (sha256
8270 (base32
8271 "188j9awxg99vrp2l3rqfmdxdazq5xrjmg1wf62vfqsks9sff6wqx"))))
8272 (build-system dune-build-system)
8273 (arguments
8274 '(#:test-target "."))
8275 (propagated-inputs
8276 (list ocaml-bigarray-compat))
8277 (native-inputs
8278 (list ocaml-alcotest pkg-config))
8279 (synopsis
8280 "Bigstring intrinsics and fast blits based on memcpy/memmove")
8281 (description
8282 "The OCaml compiler has a bunch of intrinsics for Bigstrings, but they're
8283 not widely-known, sometimes misused, and so programs that use Bigstrings are
8284 slower than they have to be. And even if a library got that part right and
8285 exposed the intrinsics properly, the compiler doesn't have any fast blits
8286 between Bigstrings and other string-like types. @code{bigstringaf} provides
8287 these missing pieces.")
8288 (license license:bsd-3)))
8289
8290 (define-public ocaml-trie
8291 (package
8292 (name "ocaml-trie")
8293 (version "1.0.0")
8294 (home-page "https://github.com/kandu/trie/")
8295 (source
8296 (origin
8297 (method git-fetch)
8298 (uri (git-reference
8299 (url home-page)
8300 (commit version)))
8301 (file-name (git-file-name name version))
8302 (sha256
8303 (base32 "0s7p9swjqjsqddylmgid6cv263ggq7pmb734z4k84yfcrgb6kg4g"))))
8304 (build-system dune-build-system)
8305 (arguments
8306 '(#:tests? #f)) ;no tests
8307 (synopsis "Strict impure trie tree")
8308 (description
8309 "This module implements strict impure trie tree data structure for
8310 OCaml.")
8311 (license license:expat)))
8312
8313 (define-public ocaml-mew
8314 (package
8315 (name "ocaml-mew")
8316 (version "0.1.0")
8317 (home-page "https://github.com/kandu/mew")
8318 (source
8319 (origin
8320 (method git-fetch)
8321 (uri (git-reference
8322 (url home-page)
8323 (commit version)))
8324 (file-name (git-file-name name version))
8325 (sha256
8326 (base32 "0417xsghj92v3xa5q4dk4nzf2r4mylrx2fd18i7cg3nzja65nia2"))))
8327 (build-system dune-build-system)
8328 (propagated-inputs
8329 (list ocaml-result ocaml-trie))
8330 (native-inputs
8331 (list ocaml-ppx-expect))
8332 (synopsis "General modal editing engine generator")
8333 (description
8334 "This package provides the core modules of Modal Editing Witch, a general
8335 modal editing engine generator.")
8336 (license license:expat)))
8337
8338 (define-public ocaml-mew-vi
8339 (package
8340 (name "ocaml-mew-vi")
8341 (version "0.5.0")
8342 (home-page "https://github.com/kandu/mew_vi")
8343 (source
8344 (origin
8345 (method git-fetch)
8346 (uri (git-reference
8347 (url home-page)
8348 (commit version)))
8349 (file-name (git-file-name name version))
8350 (sha256
8351 (base32 "0lihbf822k5zasl60w5mhwmdkljlq49c9saayrws7g4qc1j353r8"))))
8352 (build-system dune-build-system)
8353 (propagated-inputs
8354 (list ocaml-mew ocaml-react))
8355 (native-inputs
8356 (list ocaml-ppx-expect))
8357 (properties `((upstream-name . "mew_vi")))
8358 (synopsis "Modal editing VI-like editing engine generator")
8359 (description "This module provides a vi-like modal editing engine
8360 generator.")
8361 (license license:expat)))
8362
8363 (define-public ocaml-syntax-shims
8364 (package
8365 (name "ocaml-syntax-shims")
8366 (version "1.0.0")
8367 (home-page "https://github.com/ocaml-ppx/ocaml-syntax-shims")
8368 (source
8369 (origin
8370 (method git-fetch)
8371 (uri (git-reference
8372 (url home-page)
8373 (commit version)))
8374 (file-name (git-file-name name version))
8375 (sha256
8376 (base32
8377 "0l1i8z95qgb0lxlrv3yb5nkp391hqsiyi4r91p12k3xmggqixagf"))))
8378 (build-system dune-build-system)
8379 (properties
8380 `((upstream-name . "ocaml-syntax-shims")))
8381 (synopsis
8382 "Backport new syntax to older OCaml versions")
8383 (description
8384 "This package backports new language features such as @code{let+} to older
8385 OCaml compilers.")
8386 (license license:expat)))
8387
8388 (define-public ocaml-angstrom
8389 (package
8390 (name "ocaml-angstrom")
8391 (version "0.15.0")
8392 (home-page "https://github.com/inhabitedtype/angstrom")
8393 (source
8394 (origin
8395 (method git-fetch)
8396 (uri (git-reference
8397 (url home-page)
8398 (commit version)))
8399 (file-name (git-file-name name version))
8400 (sha256
8401 (base32
8402 "1hmrkdcdlkwy7rxhngf3cv3sa61cznnd9p5lmqhx20664gx2ibrh"))))
8403 (build-system dune-build-system)
8404 (arguments
8405 ;; Only build the base angstrom package.
8406 '(#:package "angstrom"
8407 #:test-target "."))
8408 (propagated-inputs
8409 (list ocaml-bigstringaf))
8410 (native-inputs
8411 (list ocaml-alcotest ocaml-ppx-let ocaml-syntax-shims))
8412 (synopsis "Parser combinators built for speed and memory-efficiency")
8413 (description
8414 "Angstrom is a parser-combinator library that makes it easy to write
8415 efficient, expressive, and reusable parsers suitable for high-performance
8416 applications. It exposes monadic and applicative interfaces for composition,
8417 and supports incremental input through buffered and unbuffered interfaces.
8418 Both interfaces give the user total control over the blocking behavior of
8419 their application, with the unbuffered interface enabling zero-copy IO.
8420 Parsers are backtracking by default and support unbounded lookahead.")
8421 (license license:bsd-3)))
8422
8423 (define-public ocaml-graphics
8424 (package
8425 (name "ocaml-graphics")
8426 (version "5.1.2")
8427 (home-page "https://github.com/ocaml/graphics")
8428 (source
8429 (origin
8430 (method git-fetch)
8431 (uri (git-reference
8432 (url home-page)
8433 (commit version)))
8434 (file-name (git-file-name name version))
8435 (sha256
8436 (base32
8437 "1q20f8y6ijxbvzik2ns4yl3w54q5z8kd0pby8i8c64a04hvly08m"))))
8438 (build-system dune-build-system)
8439 (propagated-inputs
8440 (list libx11))
8441 (synopsis "The OCaml graphics library")
8442 (description
8443 "The graphics library provides a set of portable drawing primitives.
8444 Drawing takes place in a separate window that is created when
8445 Graphics.open_graph is called. This library used to be distributed with OCaml
8446 up to OCaml 4.08.")
8447 (license license:lgpl2.1+)))
8448
8449 (define-public ocaml-uri-sexp
8450 (package
8451 (inherit ocaml-uri)
8452 (name "ocaml-uri-sexp")
8453 (arguments
8454 '(#:package "uri-sexp"
8455 #:test-target "."))
8456 (propagated-inputs
8457 (list ocaml-uri ocaml-ppx-sexp-conv ocaml-sexplib0))
8458 (native-inputs (list ocaml-ounit))
8459 (synopsis "RFC3986 URI/URL parsing library")
8460 (description "This package adds S-exp support to @code{ocaml-uri}.")))
8461
8462 (define-public ocaml-cohttp
8463 (package
8464 (name "ocaml-cohttp")
8465 (version "5.0.0")
8466 (source
8467 (origin
8468 (method git-fetch)
8469 (uri (git-reference
8470 (url "https://github.com/mirage/ocaml-cohttp")
8471 (commit (string-append "v" version))))
8472 (file-name (git-file-name name version))
8473 (sha256
8474 (base32
8475 "074xis3wmr76gadh1ffmfzjfx13mw4kr2s6rkwqwzcl6l85n9x2z"))))
8476 (build-system dune-build-system)
8477 (arguments
8478 '(#:package "cohttp"
8479 #:test-target "cohttp_test/src"))
8480 (propagated-inputs
8481 (list ocaml-re
8482 ocaml-uri
8483 ocaml-uri-sexp
8484 ocaml-sexplib0
8485 ocaml-ppx-sexp-conv
8486 ocaml-stringext
8487 ocaml-base64))
8488 (native-inputs
8489 (list ocaml-fmt ocaml-jsonm ocaml-alcotest))
8490 (home-page "https://github.com/mirage/ocaml-cohttp")
8491 (synopsis "OCaml library for HTTP clients and servers")
8492 (description
8493 "Cohttp is an OCaml library for creating HTTP daemons. It has a portable
8494 HTTP parser, and implementations using various asynchronous programming
8495 libraries.")
8496 (license license:isc)))
8497
8498 (define-public js-of-ocaml
8499 (package
8500 (name "js-of-ocaml")
8501 (version "4.0.0")
8502 (source
8503 (origin
8504 (method git-fetch)
8505 (uri (git-reference
8506 (url "https://github.com/ocsigen/js_of_ocaml")
8507 (commit version)))
8508 (file-name (git-file-name name version))
8509 (sha256
8510 (base32 "0iyhl9z57j53j2jvyqcwmxhbvy23l6g80aa0abmlgwam14yskspf"))))
8511 (build-system dune-build-system)
8512 (arguments
8513 `(#:tests? #f ;tests assume ocaml 4.13
8514 #:test-target "."))
8515 (propagated-inputs
8516 (list ocaml-ppxlib
8517 ocaml-uchar
8518 ocaml-menhir
8519 ocaml-reactivedata
8520 ocaml-cmdliner
8521 ocaml-lwt
8522 ocaml-tyxml
8523 ocaml-re
8524 ocaml-uutf
8525 ocaml-graphics
8526 ocaml-yojson))
8527 (native-inputs
8528 ;; for tests
8529 (list node ocaml-ppx-expect ocaml-num))
8530 (properties `((upstream-name . "js_of_ocaml")))
8531 (home-page "https://ocsigen.org/js_of_ocaml/")
8532 (synopsis "Compiler from OCaml bytecode to Javascript")
8533 (description "Js_of_ocaml is a compiler from OCaml bytecode to JavaScript.
8534 It makes it possible to run pure OCaml programs in JavaScript environment like
8535 browsers and Node.js.")
8536 (license license:lgpl2.1+)))
8537
8538 (define-public ocaml-bibtex2html
8539 (package
8540 (name "ocaml-bibtex2html")
8541 (version "1.99")
8542 (source
8543 (origin
8544 (method url-fetch)
8545 (uri "https://www.lri.fr/~filliatr/ftp/bibtex2html/bibtex2html-1.99.tar.gz")
8546 (sha256 (base32 "07gzrs4lfrkvbn48cgn2gn6c7cx3jsanakkrb2irj0gmjzfxl96j"))))
8547 (build-system ocaml-build-system)
8548 (arguments
8549 `(#:phases
8550 (modify-phases %standard-phases
8551 (add-after 'unpack 'patch-/bin/sh
8552 (lambda _
8553 (substitute* "configure" (("/bin/sh") (which "bash")))
8554 (setenv "HOME" (getcwd)) ;; mktexfmt needs writable home directory
8555 #t)))))
8556 (native-inputs
8557 `(("which" ,which)
8558 ("texlive" ,(texlive-updmap.cfg
8559 (list texlive-fonts-ec texlive-preprint
8560 texlive-hyperref texlive-bibtex)))))
8561 (propagated-inputs
8562 (list hevea))
8563 (home-page "https://www.lri.fr/~filliatr/bibtex2html/")
8564 (synopsis "BibTeX to HTML translator")
8565 (description "This package allows you to produce, from a set of
8566 bibliography files in BibTeX format, a bibliography in HTML format.")
8567 (license license:gpl2)))