Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 15 lines 303 B view raw
1{ buildDunePackage, qcheck-core, alcotest }: 2 3buildDunePackage { 4 pname = "qcheck-alcotest"; 5 6 inherit (qcheck-core) version src patches; 7 8 duneVersion = "3"; 9 10 propagatedBuildInputs = [ qcheck-core alcotest ]; 11 12 meta = qcheck-core.meta // { 13 description = "Alcotest backend for qcheck"; 14 }; 15}