slint-lsp: 1.9.1 -> 1.9.2 (#375714)
[NixPkgs.git] / pkgs / development / ocaml-modules / alcotest / default.nix
blobdddf79fa741ed2eddd13ce691d0a6c975ab5bd59
2   lib,
3   buildDunePackage,
4   fetchurl,
5   astring,
6   cmdliner,
7   fmt,
8   re,
9   stdlib-shims,
10   uutf,
11   ocaml-syntax-shims,
14 buildDunePackage rec {
15   pname = "alcotest";
16   version = "1.8.0";
18   src = fetchurl {
19     url = "https://github.com/mirage/alcotest/releases/download/${version}/alcotest-${version}.tbz";
20     hash = "sha256-y6G9AXB8jFW0dkuw34yccyvjIeHxwalqQG5W2NvKHQ4=";
21   };
23   nativeBuildInputs = [ ocaml-syntax-shims ];
25   propagatedBuildInputs = [
26     astring
27     cmdliner
28     fmt
29     re
30     stdlib-shims
31     uutf
32   ];
34   doCheck = true;
36   meta = with lib; {
37     homepage = "https://github.com/mirage/alcotest";
38     description = "Lightweight and colourful test framework";
39     license = licenses.isc;
40     maintainers = [ maintainers.ericbmerritt ];
41   };