about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/reason-native/console.nix
blob: b4b30cab4a0cb7ddd65ec446df5dff3544277acf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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/";
  };
}