aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/qcheck/alcotest.nix
blob: 4f1baec1e556fda16991cf47f048ef29be930219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ buildDunePackage, qcheck-core, alcotest }:

buildDunePackage {
  pname = "qcheck-alcotest";

  inherit (qcheck-core) version src;

  propagatedBuildInputs = [ qcheck-core alcotest ];

  meta = qcheck-core.meta // {
    description = "Alcotest backend for qcheck";
  };
}