29 lines
916 B
Nix
29 lines
916 B
Nix
{ stdenv, fetchFromGitHub, ocamlPackages, cf-private, CoreServices }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.89.0";
|
|
name = "flow-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "flow";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "1p2ix39h4g9hcsq2bm08ip9ivw5bh4w7am403mh7h6yrnanc9djv";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -Dm755 -t $out/bin bin/flow
|
|
'';
|
|
|
|
buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild dtoa core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec ppx_tools_versioned visitors wtf8 ])
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ cf-private CoreServices ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A static type checker for JavaScript";
|
|
homepage = https://flow.org/;
|
|
license = licenses.mit;
|
|
platforms = ocamlPackages.ocaml.meta.platforms;
|
|
maintainers = with maintainers; [ puffnfresh globin ];
|
|
};
|
|
}
|