2018-07-12 22:26:06 +01:00
|
|
|
{ stdenv, fetchFromGitHub, lib, ocamlPackages, libelf, cf-private, CoreServices }:
|
2015-11-10 15:17:00 +00:00
|
|
|
|
|
|
|
with lib;
|
2014-11-19 03:55:36 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-11 13:22:29 +01:00
|
|
|
version = "0.76.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-07-11 13:22:29 +01:00
|
|
|
sha256 = "0r3yl4m7dhm1h4c431zp8hd2gg6k1d9bwd2371xav5q7hviwmjl6";
|
2014-11-19 03:55:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp bin/flow $out/bin/
|
|
|
|
'';
|
|
|
|
|
2018-07-12 22:26:06 +01:00
|
|
|
buildInputs = [ libelf
|
|
|
|
] ++ (with ocamlPackages; [
|
|
|
|
ocaml findlib camlp4 sedlex ocamlbuild lwt_ppx lwt_log wtf8 dtoa
|
|
|
|
]) ++ 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
|
|
|
};
|
|
|
|
}
|