841d9c7fc1
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
21 lines
543 B
Nix
21 lines
543 B
Nix
{ buildDunePackage, callPackage, reason, console, ... }:
|
|
|
|
{
|
|
pname = "console";
|
|
|
|
buildInputs = [
|
|
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/";
|
|
};
|
|
}
|