2018-01-01 09:44:02 +00:00
|
|
|
{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices,
|
2018-03-27 21:34:15 +01:00
|
|
|
findlib, camlp4, sedlex, ocamlbuild, lwt_ppx, wtf8, dtoa }:
|
2015-11-10 15:17:00 +00:00
|
|
|
|
|
|
|
with lib;
|
2014-11-19 03:55:36 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-04-02 22:01:44 +01:00
|
|
|
version = "0.69.0";
|
2014-11-19 03:55:36 +00:00
|
|
|
name = "flow-${version}";
|
2016-03-28 16:16:29 +01:00
|
|
|
|
2014-11-19 03:55:36 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "facebook";
|
|
|
|
repo = "flow";
|
|
|
|
rev = "v${version}";
|
2018-04-02 22:01:44 +01:00
|
|
|
sha256 = "11n8g471zgazcnzsxcw45gzzn63xanw91wj5xwsx8i2cp7wg9g7g";
|
2014-11-19 03:55:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp bin/flow $out/bin/
|
|
|
|
'';
|
|
|
|
|
2018-01-01 09:44:02 +00:00
|
|
|
buildInputs = [
|
2018-03-27 21:34:15 +01:00
|
|
|
ocaml libelf findlib camlp4 sedlex ocamlbuild lwt_ppx wtf8 dtoa
|
2018-01-01 09:44:02 +00:00
|
|
|
] ++ optionals stdenv.isDarwin [ cf-private CoreServices ];
|
2014-11-19 03:55:36 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A static type checker for JavaScript";
|
2015-11-10 15:17:00 +00:00
|
|
|
homepage = http://flowtype.org;
|
|
|
|
license = licenses.bsd3;
|
2016-09-02 16:50:09 +01:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
2015-10-18 11:21:18 +01:00
|
|
|
maintainers = with maintainers; [ puffnfresh globin ];
|
2014-11-19 03:55:36 +00:00
|
|
|
};
|
|
|
|
}
|