lol

ocaml-async_unix: add initial version (112.24.00) to the system

+29
+27
pkgs/development/ocaml-modules/async_unix/default.nix
··· 1 + {stdenv, buildOcaml, fetchurl, async_kernel, 2 + bin_prot, comparelib, core, fieldslib, herelib, pa_ounit, 3 + pipebang, pa_test, sexplib}: 4 + 5 + buildOcaml rec { 6 + name = "async_unix"; 7 + version = "112.24.00"; 8 + 9 + minimumSupportedOcamlVersion = "4.02"; 10 + 11 + src = fetchurl { 12 + url = "https://github.com/janestreet/async_unix/archive/${version}.tar.gz"; 13 + sha256 = "d490b1dc42f0987a131fa9695b55f215ad90cdaffbfac35b7f9f88f3834337ab"; 14 + }; 15 + 16 + hasSharedObjects = true; 17 + buildInputs = [ pa_ounit ]; 18 + propagatedBuildInputs = [ async_kernel core bin_prot comparelib 19 + fieldslib herelib pipebang pa_test sexplib ]; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = https://github.com/janestreet/async_unix; 23 + description = "Jane Street Capital's asynchronous execution library (unix)"; 24 + license = licenses.asl20; 25 + maintainers = [ maintainers.ericbmerritt ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 4049 4049 4050 4050 async_kernel = callPackage ../development/ocaml-modules/async_kernel { }; 4051 4051 4052 + async_unix = callPackage ../development/ocaml-modules/async_unix { }; 4053 + 4052 4054 base64 = callPackage ../development/ocaml-modules/base64 { }; 4053 4055 4054 4056 bolt = callPackage ../development/ocaml-modules/bolt { };