lol

ocaml-pa_bench: add initial version (112.06.00) to the system

+25
+23
pkgs/development/ocaml-modules/pa_bench/default.nix
··· 1 + {stdenv, buildOcaml, fetchurl, type_conv, pa_ounit}: 2 + 3 + buildOcaml rec { 4 + name = "pa_bench"; 5 + version = "112.06.00"; 6 + 7 + minimumSupportedOcamlVersion = "4.00"; 8 + 9 + src = fetchurl { 10 + url = "https://github.com/janestreet/pa_bench/archive/${version}.tar.gz"; 11 + sha256 = "e3401e37f1d3d4acb957fd46a192d0ffcefeb0bedee63bbeb26969af1d540870"; 12 + }; 13 + 14 + buildInputs = [ pa_ounit ]; 15 + propagatedBuildInputs = [ type_conv ]; 16 + 17 + meta = with stdenv.lib; { 18 + homepage = https://github.com/janestreet/pa_bench; 19 + description = "Syntax extension for inline benchmarks"; 20 + license = stdenv.lib.licenses.asl20; 21 + maintainers = [ maintainers.ericbmerritt ]; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 4331 4331 4332 4332 pa_ounit = callPackage ../development/ocaml-modules/pa_ounit { }; 4333 4333 4334 + pa_bench = callPackage ../development/ocaml-modules/pa_bench { }; 4335 + 4334 4336 pprint = callPackage ../development/ocaml-modules/pprint { }; 4335 4337 4336 4338 pycaml = callPackage ../development/ocaml-modules/pycaml { };