gnu: ocaml-lwt: Don't use unstable tarball.

* gnu/packages/ocaml.scm (ocaml-lwt)[source]: Download using git-fetch.
This commit is contained in:
Efraim Flashner 2020-01-28 10:49:02 +02:00
parent 19568f9e79
commit 8684575a88
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1784,12 +1784,13 @@ (define-public ocaml-lwt
(version "5.1.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/ocsigen/lwt/archive/" version
".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/ocsigen/lwt")
(commit version)))
(file-name (git-file-name name version))
(sha256 (base32
"0gwdmhn0qx03agc45dplj73ia5y1gb42aan64ywfxmll3lsnr2h7"))))
"1nl7rdnwfdhwcsm5zpay1nr9y5cbapd9x1qzily7zk9ab4v52m8g"))))
(build-system dune-build-system)
(arguments
`(#:package "lwt"))