summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJulien Lepiller <julien@lepiller.eu>2019-04-14 21:47:45 +0200
committerJulien Lepiller <julien@lepiller.eu>2019-04-25 19:01:05 +0200
commit6e49426761840e2d45563f4ed4957abcbdf246e5 (patch)
tree087ba9c5858037799a348eeb8a21f64e9e301a48 /gnu
parent0705f389d1c4321e230cb24e19c8e17bb382582c (diff)
gnu: ocamlify: Downgrade to 0.0.1.
Version 0.0.2 cannot be built with the latest OCaml, whereas this version does. This is also the version used by opam. * gnu/packages/ocaml.scm (ocamlify): Downgrade to 0.0.1. [arguments]: Do not use ocaml-4.02.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/ocaml.scm18
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 968ba94407b..581360af02a 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2508,21 +2508,25 @@ radix-64 representation. It is specified in RFC 4648.")
2508(define-public ocamlify 2508(define-public ocamlify
2509 (package 2509 (package
2510 (name "ocamlify") 2510 (name "ocamlify")
2511 (version "0.0.2") 2511 (version "0.0.1")
2512 (source (origin 2512 (source (origin
2513 (method url-fetch) 2513 (method url-fetch)
2514 (uri (ocaml-forge-uri name version 1209)) 2514 (uri "https://download.ocamlcore.org/ocamlify/ocamlify/0.0.1/ocamlify-0.0.1.tar.gz")
2515 (sha256 2515 (sha256
2516 (base32 2516 (base32
2517 "1f0fghvlbfryf5h3j4as7vcqrgfjb4c8abl5y0y5h069vs4kp5ii")))) 2517 "1j9nb3vjqbdsx3d6jazixgrh776051zkrc06nsc5q5ilp1jhrwkm"))))
2518 (build-system ocaml-build-system) 2518 (build-system ocaml-build-system)
2519 ; tests are done during build 2519 ; tests are done during build
2520 (arguments 2520 (arguments
2521 `(#:ocaml ,ocaml-4.02 2521 `(#:phases
2522 #:findlib ,ocaml4.02-findlib
2523 #:phases
2524 (modify-phases %standard-phases 2522 (modify-phases %standard-phases
2525 (delete 'check)))) 2523 (delete 'check)
2524 (replace 'configure
2525 (lambda* (#:key outputs #:allow-other-keys)
2526 (invoke "ocaml" "setup.ml" "-configure" "--prefix"
2527 (assoc-ref outputs "out")))))))
2528 (native-inputs
2529 `(("ocamlbuild" ,ocamlbuild)))
2526 (home-page "https://forge.ocamlcore.org/projects/ocamlify") 2530 (home-page "https://forge.ocamlcore.org/projects/ocamlify")
2527 (synopsis "Include files in OCaml code") 2531 (synopsis "Include files in OCaml code")
2528 (description "OCamlify allows to create OCaml source code by including 2532 (description "OCamlify allows to create OCaml source code by including