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

34 lines
873 B
Nix
Raw Normal View History

2018-07-12 22:26:06 +01:00
{ stdenv, fetchFromGitHub, lib, ocamlPackages, libelf, cf-private, CoreServices }:
with lib;
stdenv.mkDerivation rec {
version = "0.76.0";
name = "flow-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "v${version}";
sha256 = "0r3yl4m7dhm1h4c431zp8hd2gg6k1d9bwd2371xav5q7hviwmjl6";
};
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 ];
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 ];
};
}