lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.lwt: 5.3.0 → 5.4.0

authored by

Vincent Laporte and committed by
Vincent Laporte
02798769 e4b1824c

+12 -4
+2
pkgs/development/ocaml-modules/lwt-dllist/default.nix
··· 4 4 pname = "lwt-dllist"; 5 5 version = "1.0.0"; 6 6 7 + useDune2 = true; 8 + 7 9 minimumOCamlVersion = "4.03"; 8 10 9 11 src = fetchurl {
+8 -4
pkgs/development/ocaml-modules/lwt/default.nix
··· 1 1 { lib, fetchzip, pkg-config, ncurses, libev, buildDunePackage, ocaml 2 - , cppo, ocaml-migrate-parsetree, ocplib-endian, result 2 + , cppo, dune-configurator, ocaml-migrate-parsetree, ocplib-endian, result 3 3 , mmap, seq 4 + , ocaml-syntax-shims 4 5 }: 5 6 6 7 let inherit (lib) optional versionAtLeast; in 7 8 8 9 buildDunePackage rec { 9 10 pname = "lwt"; 10 - version = "5.3.0"; 11 + version = "5.4.0"; 12 + 13 + useDune2 = true; 11 14 12 15 src = fetchzip { 13 16 url = "https://github.com/ocsigen/${pname}/archive/${version}.tar.gz"; 14 - sha256 = "15hgy3220m2b8imipa514n7l65m1h5lc6l1hanqwwvs7ghh2aqp2"; 17 + sha256 = "1ay1zgadnw19r9hl2awfjr22n37l7rzxd9v73pjbahavwm2ay65d"; 15 18 }; 16 19 17 20 nativeBuildInputs = [ pkg-config ]; 18 - buildInputs = [ cppo ocaml-migrate-parsetree ] 21 + buildInputs = [ cppo dune-configurator ocaml-migrate-parsetree ] 22 + ++ optional (!versionAtLeast ocaml.version "4.08") ocaml-syntax-shims 19 23 ++ optional (!versionAtLeast ocaml.version "4.07") ncurses; 20 24 propagatedBuildInputs = [ libev mmap ocplib-endian seq result ]; 21 25
+2
pkgs/development/ocaml-modules/lwt_log/default.nix
··· 4 4 pname = "lwt_log"; 5 5 version = "1.1.1"; 6 6 7 + useDune2 = true; 8 + 7 9 minimumOCamlVersion = "4.02"; 8 10 9 11 src = fetchFromGitHub {