summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/reason-native/console.nix
blob: 2530adf39f0da7c452c00bc71b8a216af2e0732a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
  lib,
  buildDunePackage,
  callPackage,
  reason,
  console,
  src,
}:

buildDunePackage {
  inherit src;

  pname = "console";
  version = "0.1.0-unstable-2024-05-07";

  nativeBuildInputs = [
    reason
  ];

  passthru.tests = {
    console = callPackage ./tests/console { };
  };

  meta = {
    description = "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/";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}