nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 21 lines 281 B view raw
1{ 2 buildDunePackage, 3 qcheck-core, 4 ounit2, 5}: 6 7buildDunePackage { 8 pname = "qcheck-ounit"; 9 10 inherit (qcheck-core) version src; 11 12 propagatedBuildInputs = [ 13 qcheck-core 14 ounit2 15 ]; 16 17 meta = qcheck-core.meta // { 18 description = "OUnit backend for qcheck"; 19 }; 20 21}