diff options
author | Marius Bakke <[email protected]> | 2020-11-23 23:39:47 +0100 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2020-11-23 23:39:47 +0100 |
commit | 87a027243fa5e8b00fa6257847fde5d5af04bce6 (patch) | |
tree | 87f85b3d5d9f521e29a09d6c36a4f951a426eab0 /gnu/packages/ocaml.scm | |
parent | a485a98ca8296d760251e9d870583117ac50979e (diff) | |
parent | 689d88451e7f1db62df5989ac3ff82f540424061 (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 706def4f43..369e819573 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -5797,16 +5797,18 @@ convenience functions for vectors and matrices.") (url "https://github.com/Chris00/ocaml-cairo") (commit version))) (file-name (git-file-name name version)) + (patches + (search-patches + ;; NOTE: This patch will be obsolete on the + ;; next tagged release. Remove it at that + ;; point. + "ocaml-cairo2-caml_ba_array-fix.patch")) (sha256 (base32 "0wzysis9fa850s68qh8vrvqc6svgllhwra3kzll2ibv0wmdqrich")))) (build-system dune-build-system) (arguments - `(;; NOTE: GC reclaims bigarrays packed into a custom structure - ;; regardless of their refcounts. Affects OCaml >= 4.10.x - ;; https://github.com/ocaml/ocaml/issues/9360 - #:tests? #f - #:test-target "tests")) + `(#:test-target "tests")) (inputs `(("cairo" ,cairo) ("gtk+-2" ,gtk+-2) |