2021-06-09 14:12:30 +01:00
|
|
|
{ buildDunePackage, callPackage, reason, console, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
pname = "console";
|
|
|
|
|
2022-02-22 09:59:04 +00:00
|
|
|
nativeBuildInputs = [
|
2021-06-09 14:12:30 +01:00
|
|
|
reason
|
|
|
|
];
|
|
|
|
|
|
|
|
passthru.tests = {
|
|
|
|
console = callPackage ./tests/console {
|
|
|
|
inherit buildDunePackage reason console;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A library providing a web-influenced polymorphic console API for native Console.log(anything) with runtime printing";
|
|
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/console";
|
|
|
|
homepage = "https://reason-native.com/docs/console/";
|
|
|
|
};
|
|
|
|
}
|