about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/reason-native/cli.nix
blob: c6c5abfb7f9a3a956a71ded3dd6bb127010a9025 (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, re, reason, pastel, src }:

buildDunePackage {
  inherit src;

  pname = "cli";
  version = "0.0.1-alpha-unstable-2024-05-07";

  nativeBuildInputs = [
    reason
  ];

  buildInputs = [
    re
    pastel
  ];

 meta = {
    downloadPage = "https://github.com/reasonml/reason-native";
    homepage = "https://reason-native.com/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ ];
  };
}