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

32 lines
843 B
Nix
Raw Normal View History

2017-05-22 14:49:30 +02:00
{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices, findlib, camlp4, sedlex, ocamlbuild }:
with lib;
stdenv.mkDerivation rec {
2017-05-22 14:49:30 +02:00
version = "0.46.0";
name = "flow-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "v${version}";
2017-05-22 14:49:30 +02:00
sha256 = "05rnlckwiynkh0300f27xhrn53pf0hxlkb0iz3nlb81xmsk005a4";
};
installPhase = ''
mkdir -p $out/bin
cp bin/flow $out/bin/
'';
2017-05-22 14:49:30 +02:00
buildInputs = [ ocaml libelf findlib camlp4 sedlex ocamlbuild ]
++ 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 12:21:18 +02:00
maintainers = with maintainers; [ puffnfresh globin ];
};
}