mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
ocamlPackages.lwt4: 4.2.1 → 4.4.0
This commit is contained in:
parent
b94b8ca387
commit
6cffb5072f
@ -1,5 +1,5 @@
|
||||
{ lib, fetchzip, pkgconfig, ncurses, libev, buildDunePackage, ocaml
|
||||
, cppo, ocaml-migrate-parsetree, ppx_tools_versioned, result
|
||||
, cppo, ocaml-migrate-parsetree, ocplib-endian, result
|
||||
, mmap, seq
|
||||
}:
|
||||
|
||||
@ -7,22 +7,17 @@ let inherit (lib) optional versionAtLeast; in
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "lwt";
|
||||
version = "4.2.1";
|
||||
version = "4.4.0";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/ocsigen/${pname}/archive/${version}.tar.gz";
|
||||
sha256 = "1hz24fyhpm7d6603v399pgxvdl236srwagqja41ljvjx83y10ysr";
|
||||
sha256 = "1l97zdcql7y13fhaq0m9n9xvxf712jg0w70r72fvv6j49xm4nlhi";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace lwt.opam \
|
||||
--replace 'version: "dev"' 'version: "${version}"'
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ cppo ocaml-migrate-parsetree ppx_tools_versioned ]
|
||||
buildInputs = [ cppo ocaml-migrate-parsetree ]
|
||||
++ optional (!versionAtLeast ocaml.version "4.07") ncurses;
|
||||
propagatedBuildInputs = [ libev mmap seq result ];
|
||||
propagatedBuildInputs = [ libev mmap ocplib-endian seq result ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://ocsigen.org/lwt/";
|
||||
|
Loading…
Reference in New Issue
Block a user