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

34 lines
898 B
Nix
Raw Normal View History

2018-07-12 23:26:06 +02:00
{ stdenv, fetchFromGitHub, lib, ocamlPackages, libelf, cf-private, CoreServices }:
with lib;
stdenv.mkDerivation rec {
2018-08-17 04:38:53 +02:00
version = "0.79.0";
name = "flow-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "v${version}";
2018-08-17 04:38:53 +02:00
sha256 = "1m8239jl0kmpgmk81mak6k3hmmikji6bb3v0zaknb1z3jl8aa1wb";
};
installPhase = ''
mkdir -p $out/bin
cp bin/flow $out/bin/
'';
2018-07-12 23:26:06 +02:00
buildInputs = [ libelf
] ++ (with ocamlPackages; [
2018-07-23 14:56:11 +02:00
ocaml findlib camlp4 sedlex ocamlbuild lwt_ppx ppx_deriving ppx_gen_rec lwt_log wtf8 dtoa
2018-07-12 23:26:06 +02: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 12:21:18 +02:00
maintainers = with maintainers; [ puffnfresh globin ];
};
}