evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / cli.nix
blobebce5ad277f276be929b96855374b8c367fe76ca
1 { lib, buildDunePackage, re, reason, pastel, src }:
3 buildDunePackage {
4   inherit src;
6   pname = "cli";
7   version = "0.0.1-alpha-unstable-2024-05-07";
9   nativeBuildInputs = [
10     reason
11   ];
13   buildInputs = [
14     re
15     pastel
16   ];
18  meta = {
19     downloadPage = "https://github.com/reasonml/reason-native";
20     homepage = "https://reason-native.com/";
21     license = lib.licenses.mit;
22     maintainers = [ ];
23   };