1{
2 lib,
3 buildDunePackage,
4 reason,
5 console,
6 pastel,
7 src,
8}:
9
10buildDunePackage {
11 inherit src;
12
13 pname = "pastel-console";
14 version = "0.0.0-unstable-2024-05-07";
15
16 nativeBuildInputs = [
17 reason
18 ];
19
20 propagatedBuildInputs = [
21 console
22 pastel
23 ];
24
25 meta = {
26 description = "Small library for pretty coloring to Console output";
27 downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/pastel-console";
28 homepage = "https://reason-native.com/docs/pastel/console";
29 license = lib.licenses.mit;
30 maintainers = [ ];
31 };
32}