nixpkgs/pkgs/development/tools/analysis/flow/default.nix

34 lines
886 B
Nix
Raw Normal View History

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 }:
with lib;
stdenv.mkDerivation rec {
2018-04-02 22:01:44 +01:00
version = "0.69.0";
name = "flow-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "v${version}";
2018-04-02 22:01:44 +01:00
sha256 = "11n8g471zgazcnzsxcw45gzzn63xanw91wj5xwsx8i2cp7wg9g7g";
};
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 ];
meta = with stdenv.lib; {
description = "A static type checker for JavaScript";
homepage = http://flowtype.org;
license = licenses.bsd3;
platforms = [ "x86_64-linux" "x86_64-darwin" ];
2015-10-18 11:21:18 +01:00
maintainers = with maintainers; [ puffnfresh globin ];
};
}