about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/pa_ounit/default.nix
blob: fa4ecfcc28b2e331b4f73a8d71bab2764172f5bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{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 ];
  };
}