Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage, qcheck-ounit }: 2 3buildDunePackage { 4 pname = "qcheck"; 5 6 inherit (qcheck-ounit) version src patches; 7 8 propagatedBuildInputs = [ qcheck-ounit ]; 9 10 meta = qcheck-ounit.meta // { 11 description = "Compatibility package for qcheck"; 12 }; 13 14}