2024-07-01 15:47:52 +00:00
|
|
|
{ lib, buildDunePackage, re, reason, pastel, src }:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
inherit src;
|
2021-06-28 23:13:55 +00:00
|
|
|
|
|
|
|
pname = "cli";
|
2024-07-01 15:47:52 +00:00
|
|
|
version = "0.0.1-alpha-unstable-2024-05-07";
|
2021-06-28 23:13:55 +00:00
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
reason
|
|
|
|
];
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
buildInputs = [
|
|
|
|
re
|
|
|
|
pastel
|
|
|
|
];
|
2024-07-01 15:47:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
downloadPage = "https://github.com/reasonml/reason-native";
|
|
|
|
homepage = "https://reason-native.com/";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ ];
|
|
|
|
};
|
2021-06-28 23:13:55 +00:00
|
|
|
}
|