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