Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 21 lines 549 B view raw
1{ buildDunePackage, callPackage, reason, console, ... }: 2 3{ 4 pname = "console"; 5 6 nativeBuildInputs = [ 7 reason 8 ]; 9 10 passthru.tests = { 11 console = callPackage ./tests/console { 12 inherit buildDunePackage reason console; 13 }; 14 }; 15 16 meta = { 17 description = "A library providing a web-influenced polymorphic console API for native Console.log(anything) with runtime printing"; 18 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/console"; 19 homepage = "https://reason-native.com/docs/console/"; 20 }; 21}