depot/third_party/nixpkgs/pkgs/development/ocaml-modules/reason-native/console.nix
Default email 8e65f7f0cc Project import generated by Copybara.
GitOrigin-RevId: 062a0c5437b68f950b081bbfc8a699d57a4ee026
2022-03-05 17:20:37 +01:00

21 lines
549 B
Nix

{ buildDunePackage, callPackage, reason, console, ... }:
{
pname = "console";
nativeBuildInputs = [
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/";
};
}