Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 callPackage, 5 reason, 6 console, 7 src, 8}: 9 10buildDunePackage { 11 inherit src; 12 13 pname = "console"; 14 version = "0.1.0-unstable-2024-05-07"; 15 16 nativeBuildInputs = [ 17 reason 18 ]; 19 20 passthru.tests = { 21 console = callPackage ./tests/console { }; 22 }; 23 24 meta = { 25 description = "Library providing a web-influenced polymorphic console API for native Console.log(anything) with runtime printing"; 26 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/console"; 27 homepage = "https://reason-native.com/docs/console/"; 28 license = lib.licenses.mit; 29 maintainers = [ ]; 30 }; 31}