diff options
author | Julien Lepiller <julien@lepiller.eu> | 2023-12-25 11:48:59 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2023-12-30 22:12:52 +0100 |
commit | aca25d415b0c59b4b692d06bb2194c9274399452 (patch) | |
tree | 4cfa725fe73217c32a520fb399a538644892ab13 | |
parent | 29a82bf5fcc4c6d000e93b2c5bcd791cac926fa3 (diff) |
gnu: Remove ocaml4.07-compiler-libs.
* gnu/packages/ocaml.scm (ocaml4.07-compiler-libs): Remove variable.
(ocaml-compiler-libs)[properties]: Remove variant.
Change-Id: Idf54330537c2ff9317a4650df06ece7bd980b1da
-rw-r--r-- | gnu/packages/ocaml.scm | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 46c96b87c3..0ab46bb8bf 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -6084,33 +6084,13 @@ provided by companion libraries such as "00if2f7j9d8igdkj4rck3p74y17j6b233l91mq02drzrxj199qjv")))) (build-system dune-build-system) (arguments `(#:tests? #f)) ;no tests - (properties `((upstream-name . "ocaml-compiler-libs") - (ocaml4.07-variant . ,(delay ocaml4.07-compiler-libs)))) + (properties `((upstream-name . "ocaml-compiler-libs"))) (synopsis "Compiler libraries repackaged") (description "This package simply repackages the OCaml compiler libraries so they don't expose everything at toplevel. For instance, @code{Ast_helper} is now @code{Ocaml_common.Ast_helper}.") (license license:expat))) -(define-public ocaml4.07-compiler-libs - (package-with-ocaml4.07 - (package - (inherit ocaml-compiler-libs) - (name "ocaml-compiler-libs") - (version "0.11.0") - (home-page "https://github.com/janestreet/ocaml-compiler-libs") - (source - (origin - (method git-fetch) - (uri (git-reference - (url home-page) - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "03jds7bszh8wwpfwxb3dg0gyr1j1872wxwx1xqhry5ir0i84bg0s")))) - (properties `((upstream-name . "ocaml-compiler-libs")))))) - (define-public ocaml-stdio (package (name "ocaml-stdio") |