biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / analysis / flow / default.nix
blob179e57625c9ed1a2199287b9efa3f2a741741b97
1 { lib, stdenv, fetchFromGitHub, ocamlPackages, CoreServices }:
3 stdenv.mkDerivation rec {
4   pname = "flow";
5   version = "0.234.0";
7   src = fetchFromGitHub {
8     owner = "facebook";
9     repo = "flow";
10     rev = "v${version}";
11     hash = "sha256-ChAgAYvNjQ60ly8B4i4M0awjgke8IcjJK72TOQZNnzw=";
12   };
14   postPatch = ''
15     substituteInPlace src/services/inference/check_cache.ml --replace 'Core_kernel' 'Core'
16   '';
18   makeFlags = [ "FLOW_RELEASE=1" ];
20   installPhase = ''
21     install -Dm755 bin/flow $out/bin/flow
22     install -Dm644 resources/shell/bash-completion $out/share/bash-completion/completions/flow
23   '';
25   strictDeps = true;
27   nativeBuildInputs = with ocamlPackages; [ ocaml dune_3 findlib ocamlbuild ];
29   buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ]
30     ++ (with ocamlPackages; [ core_kernel dtoa fileutils lwt_log lwt_ppx ocaml_lwt ppx_deriving ppx_gen_rec ppx_let sedlex visitors wtf8 ] ++ lib.optionals stdenv.isLinux [ inotify ]);
32   meta = with lib; {
33     description = "A static type checker for JavaScript";
34     mainProgram = "flow";
35     homepage = "https://flow.org/";
36     changelog = "https://github.com/facebook/flow/blob/v${version}/Changelog.md";
37     license = licenses.mit;
38     platforms = ocamlPackages.ocaml.meta.platforms;
39     maintainers = with maintainers; [ marsam puffnfresh ];
40   };