fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, topkg, opam, cmdliner, astring, fmt, result }:
2
3stdenv.mkDerivation rec {
4 name = "ocaml${ocaml.version}-alcotest-${version}";
5 version = "0.7.2";
6
7 src = fetchzip {
8 url = "https://github.com/mirage/alcotest/archive/${version}.tar.gz";
9 sha256 = "1qgsz2zz5ky6s5pf3j3shc4fjc36rqnjflk8x0wl1fcpvvkr52md";
10 };
11
12 buildInputs = [ ocaml findlib ocamlbuild opam topkg ];
13
14 propagatedBuildInputs = [ cmdliner astring fmt result ];
15
16 inherit (topkg) buildPhase installPhase;
17
18 createFindlibDestdir = true;
19
20 meta = with stdenv.lib; {
21 homepage = https://github.com/mirage/alcotest;
22 description = "A lightweight and colourful test framework";
23 license = stdenv.lib.licenses.isc;
24 maintainers = [ maintainers.ericbmerritt ];
25 };
26}