69f931660c
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 113.00.00 with grep in /nix/store/z75i3hc6a7yn9jciri3zwpzrzmcxfs9y-ocaml-pa_bench-113.00.00 - directory tree listing: https://gist.github.com/81cbcb6edb9964f7b33a8fd163ad6e30
24 lines
643 B
Nix
24 lines
643 B
Nix
{stdenv, buildOcaml, fetchurl, type_conv, pa_ounit}:
|
|
|
|
buildOcaml rec {
|
|
name = "pa_bench";
|
|
version = "113.00.00";
|
|
|
|
minimumSupportedOcamlVersion = "4.00";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/janestreet/pa_bench/archive/${version}.tar.gz";
|
|
sha256 = "1cd6291gdnk6h8ziclg6x3if8z5xy67nfz9gx8sx4k2cwv0j29k5";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|