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