e2aa6728c9
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/rpbwnyaisfm27cf36hb7scsa833r1lkb-ocaml-pa_ounit-113.00.00 - directory tree listing: https://gist.github.com/7284ca806fd00f73984a14b088879e92
21 lines
524 B
Nix
21 lines
524 B
Nix
{stdenv, buildOcaml, fetchurl, ounit}:
|
|
|
|
buildOcaml rec {
|
|
name = "pa_ounit";
|
|
version = "113.00.00";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/janestreet/pa_ounit/archive/${version}.tar.gz";
|
|
sha256 = "0vi0p2hxcrdsl0319c9s8mh9hmk2i4ir6c6vrj8axkc37zkgc437";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ounit ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/janestreet/pa_ounit;
|
|
description = "OCaml inline testing";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
};
|
|
}
|