nixpkgs/pkgs/development/ocaml-modules/reason-native/console.nix

22 lines
543 B
Nix
Raw Normal View History

{ 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/";
};
}