Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 18 lines 204 B view raw
1{ 2 buildDunePackage, 3 junit, 4 ounit2, 5}: 6 7buildDunePackage ({ 8 pname = "junit_ounit"; 9 10 inherit (junit) src version meta; 11 12 propagatedBuildInputs = [ 13 junit 14 ounit2 15 ]; 16 17 doCheck = true; 18})