python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / console.nix
blobb4b30cab4a0cb7ddd65ec446df5dff3544277acf
1 { buildDunePackage, callPackage, reason, console, ... }:
4   pname = "console";
6   nativeBuildInputs = [
7     reason
8   ];
10   passthru.tests = {
11     console = callPackage ./tests/console {
12       inherit buildDunePackage reason console;
13     };
14   };
16   meta = {
17     description = "A library providing a web-influenced polymorphic console API for native Console.log(anything) with runtime printing";
18     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/console";
19     homepage = "https://reason-native.com/docs/console/";
20   };