summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/qtest/default.nix
blob: a9d71597d44ab315cb0e963ef57ce9d6007689b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  lib,
  buildDunePackage,
  fetchFromGitHub,
  qcheck,
}:

buildDunePackage (finalAttrs: {
  pname = "qtest";
  version = "2.11.2";

  src = fetchFromGitHub {
    owner = "vincent-hugot";
    repo = "qtest";
    rev = "v${finalAttrs.version}";
    sha256 = "sha256-VLY8+Nu6md0szW4RVxTFwlSQ9kyrgUqf7wQEA6GW8BE=";
  };

  preBuild = ''
    substituteInPlace src/dune \
      --replace "(libraries bytes)" "" \
      --replace "libraries qcheck ounit2 bytes" "libraries qcheck ounit2"
  '';

  propagatedBuildInputs = [ qcheck ];

  meta = {
    description = "Inline (Unit) Tests for OCaml";
    mainProgram = "qtest";
    inherit (finalAttrs.src.meta) homepage;
    maintainers = with lib.maintainers; [ vbgl ];
    license = lib.licenses.gpl3;
  };
})