summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reason-native/pastel.nix
blob: a5abc4e219c5f28d7ed5093f610b1a99bd67084b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ reason, re, ... }:

{
  pname = "pastel";

  minimalOCamlVersion = "4.05";

  buildInputs = [
    reason
  ];
  propagatedBuildInputs = [
    re
  ];

  meta = {
    description = "A text formatting library that harnesses Reason JSX to provide intuitive terminal output. Like React but for CLI";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/pastel";
    homepage = "https://reason-native.com/docs/pastel/";
  };
}