lol
0
fork

Configure Feed

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

async: 112.24.00 -> 112.24.00/113.33.03

PPX/P4 split

+35 -12
+2 -2
pkgs/development/ocaml-modules/async_find/default.nix
··· 1 - {stdenv, buildOcaml, fetchurl, async, core_p4, sexplib_p4}: 1 + {stdenv, buildOcaml, fetchurl, async_p4, core_p4, sexplib_p4}: 2 2 3 3 buildOcaml rec { 4 4 name = "async_find"; ··· 11 11 sha256 = "4e3fda72f50174f05d96a5a09323f236c041b1a685890c155822956f3deb8803"; 12 12 }; 13 13 14 - propagatedBuildInputs = [ async core_p4 sexplib_p4 ]; 14 + propagatedBuildInputs = [ async_p4 core_p4 sexplib_p4 ]; 15 15 16 16 meta = with stdenv.lib; { 17 17 homepage = https://github.com/janestreet/async_find;
+2 -2
pkgs/development/ocaml-modules/async_shell/default.nix
··· 1 - {stdenv, buildOcaml, fetchurl, async, core_p4, core_extended_p4}: 1 + {stdenv, buildOcaml, fetchurl, async_p4, core_p4, core_extended_p4}: 2 2 3 3 buildOcaml rec { 4 4 name = "async_shell"; ··· 11 11 sha256 = "0b4497bea9124c5a665ee58fb0a73c5cbf2f757479df902e6870627196e6c105"; 12 12 }; 13 13 14 - propagatedBuildInputs = [ async core_p4 core_extended_p4 ]; 14 + propagatedBuildInputs = [ async_p4 core_p4 core_extended_p4 ]; 15 15 16 16 meta = with stdenv.lib; { 17 17 homepage = https://github.com/janestreet/async_shell;
+2 -2
pkgs/development/ocaml-modules/async_ssl/default.nix
··· 1 - {stdenv, buildOcaml, fetchurl, async, comparelib, core_p4, ctypes, openssl, 1 + {stdenv, buildOcaml, fetchurl, async_p4, comparelib, core_p4, ctypes, openssl, 2 2 fieldslib_p4, herelib, pa_bench, pa_ounit, pipebang, pa_test, sexplib_p4}: 3 3 4 4 buildOcaml rec { ··· 13 13 }; 14 14 15 15 buildInputs = [ pa_bench pa_test ]; 16 - propagatedBuildInputs = [ ctypes async comparelib core_p4 fieldslib_p4 pa_ounit 16 + propagatedBuildInputs = [ ctypes async_p4 comparelib core_p4 fieldslib_p4 pa_ounit 17 17 herelib pipebang sexplib_p4 openssl ]; 18 18 19 19 meta = with stdenv.lib; {
+3 -3
pkgs/development/ocaml-modules/cstruct/default.nix
··· 1 1 {stdenv, writeText, fetchurl, ocaml, ocplib-endian, sexplib_p4, findlib, 2 - async ? null, lwt ? null, camlp4}: 2 + async_p4 ? null, lwt ? null, camlp4}: 3 3 4 4 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01"; 5 5 ··· 12 12 }; 13 13 14 14 configureFlags = stdenv.lib.strings.concatStringsSep " " ((if lwt != null then ["--enable-lwt"] else []) ++ 15 - (if async != null then ["--enable-async"] else [])); 15 + (if async_p4 != null then ["--enable-async"] else [])); 16 16 buildInputs = [ocaml findlib camlp4]; 17 - propagatedBuildInputs = [ocplib-endian sexplib_p4 lwt async]; 17 + propagatedBuildInputs = [ocplib-endian sexplib_p4 lwt async_p4]; 18 18 19 19 createFindlibDestdir = true; 20 20 dontStrip = true;
+16
pkgs/development/ocaml-modules/janestreet/async.nix
··· 1 + {stdenv, buildOcamlJane, fetchurl, async_kernel, 2 + async_unix, async_extra}: 3 + 4 + buildOcamlJane rec { 5 + name = "async"; 6 + version = "113.33.03"; 7 + hash = "0wyspkp8k833fh03r3h016nbfn6kjfhvb2bg42cly6agcak59fmr"; 8 + propagatedBuildInputs = [ async_kernel async_unix async_extra ]; 9 + 10 + meta = with stdenv.lib; { 11 + homepage = https://github.com/janestreet/async; 12 + description = "Jane Street Capital's asynchronous execution library"; 13 + license = licenses.asl20; 14 + maintainers = [ maintainers.maurer maintainers.ericbmerritt ]; 15 + }; 16 + }
+10 -3
pkgs/top-level/all-packages.nix
··· 5072 5072 5073 5073 async_unix_p4 = callPackage ../development/ocaml-modules/async_unix { }; 5074 5074 5075 - async = 5075 + async_p4 = 5076 5076 if lib.versionOlder "4.02" ocaml_version 5077 5077 then callPackage ../development/ocaml-modules/async { } 5078 5078 else null; ··· 5626 5626 if lib.versionOlder "4.02" ocaml_version 5627 5627 then callPackage ../development/ocaml-modules/janestreet/async-extra.nix {} 5628 5628 else async_extra_p4; 5629 + 5630 + async = 5631 + if lib.versionOlder "4.02" ocaml_version 5632 + then callPackage ../development/ocaml-modules/janestreet/async.nix {} 5633 + else async_p4; 5629 5634 }; 5630 5635 5631 5636 ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0; ··· 5753 5758 tinycc = callPackage ../development/compilers/tinycc { }; 5754 5759 5755 5760 trv = callPackage ../development/tools/misc/trv { 5756 - inherit (ocamlPackages_4_02) findlib camlp4 async 5757 - async_extra async_shell async_find cohttp uri; 5761 + inherit (ocamlPackages_4_02) findlib camlp4 5762 + async_shell async_find cohttp uri; 5758 5763 ocaml = ocaml_4_02; 5764 + async = ocamlPackages_4_02.async_p4; 5765 + async_extra = ocamlPackages_4_02.async_extra_p4; 5759 5766 async_unix = ocamlPackages_4_02.async_unix_p4; 5760 5767 core_extended = ocamlPackages_4_02.core_extended_p4; 5761 5768 sexplib = ocamlPackages_4_02.sexplib_p4;