me
/
guix
Archived
1
0
Fork 0

gnu: Remove ocaml4.07-lwt.

* gnu/packages/ocaml.scm (ocaml4.07-lwt): Remove variable.
(ocaml-lwt)[properties]: Remove variant.

Change-Id: I3db8b1656ead127a9081d843a3ad387706bcc982
master
Julien Lepiller 2023-12-25 11:52:01 +01:00
parent b1b2eb4040
commit e22e54aa04
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 0 additions and 18 deletions

View File

@ -2825,26 +2825,8 @@ OCaml with fibers.")
make it easy to run normally-blocking I/O operations concurrently in a single
process. Also, in many cases, Lwt threads can interact without the need for
locks or other synchronization primitives.")
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-lwt))))
(license license:lgpl2.1)))
(define-public ocaml4.07-lwt
(package-with-ocaml4.07
(package
(inherit ocaml-lwt)
(name "ocaml-lwt")
(version "5.5.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ocsigen/lwt")
(commit version)))
(file-name (git-file-name name version))
(sha256 (base32
"1jbjz2rsz3j56k8vh5qlmm87hhkr250bs2m3dvpy9vsri8rkzj9z"))))
(properties '()))))
;; TODO this alias is not ideal but ocaml-lwt already explicitly specifies a
;; package argument and at least this way the importer doesn't try to
;; re-import it.