nixpkgs/pkgs/development/ocaml-modules/alcotest/default.nix

21 lines
572 B
Nix
Raw Normal View History

2015-10-13 01:46:01 +00:00
{ stdenv, buildOcaml, fetchzip, cmdliner, stringext }:
buildOcaml rec {
name = "alcotest";
2015-10-13 01:46:01 +00:00
version = "0.4.5";
2015-10-13 01:46:01 +00:00
src = fetchzip {
url = "https://github.com/mirage/alcotest/archive/${version}.tar.gz";
sha256 = "1wcn9hkjf4cbnrz99w940qfjpi0lvd8v63yxwpnafkff871dwk6k";
};
2015-10-13 01:46:01 +00:00
propagatedBuildInputs = [ cmdliner stringext ];
meta = with stdenv.lib; {
2015-10-13 01:46:01 +00:00
homepage = https://github.com/mirage/alcotest;
description = "A lightweight and colourful test framework";
license = stdenv.lib.licenses.isc;
maintainers = [ maintainers.ericbmerritt ];
};
}