mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
ocaml-pa_bench: add initial version (112.06.00) to the system
This commit is contained in:
parent
86e8c73d7b
commit
6c2a3f35ea
23
pkgs/development/ocaml-modules/pa_bench/default.nix
Normal file
23
pkgs/development/ocaml-modules/pa_bench/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{stdenv, buildOcaml, fetchurl, type_conv, pa_ounit}:
|
||||
|
||||
buildOcaml rec {
|
||||
name = "pa_bench";
|
||||
version = "112.06.00";
|
||||
|
||||
minimumSupportedOcamlVersion = "4.00";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/janestreet/pa_bench/archive/${version}.tar.gz";
|
||||
sha256 = "e3401e37f1d3d4acb957fd46a192d0ffcefeb0bedee63bbeb26969af1d540870";
|
||||
};
|
||||
|
||||
buildInputs = [ pa_ounit ];
|
||||
propagatedBuildInputs = [ type_conv ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/janestreet/pa_bench;
|
||||
description = "Syntax extension for inline benchmarks";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
maintainers = [ maintainers.ericbmerritt ];
|
||||
};
|
||||
}
|
@ -4331,6 +4331,8 @@ let
|
||||
|
||||
pa_ounit = callPackage ../development/ocaml-modules/pa_ounit { };
|
||||
|
||||
pa_bench = callPackage ../development/ocaml-modules/pa_bench { };
|
||||
|
||||
pprint = callPackage ../development/ocaml-modules/pprint { };
|
||||
|
||||
pycaml = callPackage ../development/ocaml-modules/pycaml { };
|
||||
|
Loading…
Reference in New Issue
Block a user