repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
evcc: 0.131.4 -> 0.131.5
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
reason-native
/
cli.nix
blob
ebce5ad277f276be929b96855374b8c367fe76ca
1
{ lib, buildDunePackage, re, reason, pastel, src }:
2
3
buildDunePackage {
4
inherit src;
5
6
pname = "cli";
7
version = "0.0.1-alpha-unstable-2024-05-07";
8
9
nativeBuildInputs = [
10
reason
11
];
12
13
buildInputs = [
14
re
15
pastel
16
];
17
18
meta = {
19
downloadPage = "https://github.com/reasonml/reason-native";
20
homepage = "https://reason-native.com/";
21
license = lib.licenses.mit;
22
maintainers = [ ];
23
};
24
}