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