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

{
  pname = "pastel-console";

  buildInputs = [
    reason
  ];

  propagatedBuildInputs = [
    console
    pastel
  ];

  meta = {
    description = "Small library for pretty coloring to Console output";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/pastel-console";
    homepage = "https://reason-native.com/docs/pastel/console";
  };
}