2018-07-12 14:26:06 -07:00
|
|
|
{ stdenv, fetchFromGitHub, lib, ocamlPackages, libelf, cf-private, CoreServices }:
|
2015-11-10 07:17:00 -08:00
|
|
|
|
|
|
|
with lib;
|
2014-11-18 19:55:36 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-06 23:07:15 -07:00
|
|
|
version = "0.80.0";
|
2014-11-18 19:55:36 -08:00
|
|
|
name = "flow-${version}";
|
2016-03-28 08:16:29 -07:00
|
|
|
|
2014-11-18 19:55:36 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "flow";
|
|
|
|
rev = "v${version}";
|
2018-09-06 23:07:15 -07:00
|
|
|
sha256 = "0jixisimqwbr46gh9357ya0rscv46svm6kqnawkq1shlf9nwa3lx";
|
2014-11-18 19:55:36 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp bin/flow $out/bin/
|
|
|
|
'';
|
|
|
|
|
2018-07-12 14:26:06 -07:00
|
|
|
buildInputs = [ libelf
|
|
|
|
] ++ (with ocamlPackages; [
|
2018-07-23 05:56:11 -07:00
|
|
|
ocaml findlib camlp4 sedlex ocamlbuild lwt_ppx ppx_deriving ppx_gen_rec lwt_log wtf8 dtoa
|
2018-07-12 14:26:06 -07:00
|
|
|
]) ++ optionals stdenv.isDarwin [ cf-private CoreServices ];
|
2014-11-18 19:55:36 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A static type checker for JavaScript";
|
2015-11-10 07:17:00 -08:00
|
|
|
homepage = http://flowtype.org;
|
|
|
|
license = licenses.bsd3;
|
2016-09-02 08:50:09 -07:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
2015-10-18 03:21:18 -07:00
|
|
|
maintainers = with maintainers; [ puffnfresh globin ];
|
2014-11-18 19:55:36 -08:00
|
|
|
};
|
|
|
|
}
|