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

{
  pname = "cli";

  nativeBuildInputs = [
    reason
  ];

  buildInputs = [
    re
    pastel
  ];
}