2015-09-02 08:14:59 +01:00
|
|
|
{stdenv, buildOcaml, fetchurl, type-conv, pa-ounit}:
|
2015-05-22 04:50:32 +01:00
|
|
|
|
|
|
|
buildOcaml rec {
|
2015-09-02 08:14:59 +01:00
|
|
|
name = "pa-bench";
|
2015-05-22 04:50:32 +01:00
|
|
|
version = "112.06.00";
|
|
|
|
|
|
|
|
minimumSupportedOcamlVersion = "4.00";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/janestreet/pa_bench/archive/${version}.tar.gz";
|
|
|
|
sha256 = "e3401e37f1d3d4acb957fd46a192d0ffcefeb0bedee63bbeb26969af1d540870";
|
|
|
|
};
|
|
|
|
|
2015-09-02 08:14:59 +01:00
|
|
|
buildInputs = [ pa-ounit ];
|
|
|
|
propagatedBuildInputs = [ type-conv ];
|
2015-05-22 04:50:32 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|