1{ stdenv, buildOcaml, fetchzip, cmdliner, stringext }:
2
3buildOcaml rec {
4 name = "alcotest";
5 version = "0.4.5";
6
7 src = fetchzip {
8 url = "https://github.com/mirage/alcotest/archive/${version}.tar.gz";
9 sha256 = "1wcn9hkjf4cbnrz99w940qfjpi0lvd8v63yxwpnafkff871dwk6k";
10 };
11
12 propagatedBuildInputs = [ cmdliner stringext ];
13
14 meta = with stdenv.lib; {
15 homepage = https://github.com/mirage/alcotest;
16 description = "A lightweight and colourful test framework";
17 license = stdenv.lib.licenses.isc;
18 maintainers = [ maintainers.ericbmerritt ];
19 };
20}