Merge pull request #17613 from despairblue/update/flow

flow: 0.28.0 -> 0.30.0

authored by Robin Gloster and committed by GitHub 20057111 9626707e

+4 -4
+4 -4
pkgs/development/tools/analysis/flow/default.nix
··· 1 - { stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices, git, mercurial }: 1 + { stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices }: 2 2 3 3 with lib; 4 4 5 5 stdenv.mkDerivation rec { 6 - version = "0.28.0"; 6 + version = "0.30.0"; 7 7 name = "flow-${version}"; 8 8 src = fetchFromGitHub { 9 9 owner = "facebook"; 10 10 repo = "flow"; 11 11 rev = "v${version}"; 12 - sha256 = "1xryv1366zc385r82r6n832xkaqcm63zs1baizl02qchfzfa3am2"; 12 + sha256 = "1s6l3570r53qjyqs8ghqqgb51rb0skijwjgm6av43xi7b7knkd35"; 13 13 }; 14 14 15 15 installPhase = '' ··· 17 17 cp bin/flow $out/bin/ 18 18 ''; 19 19 20 - buildInputs = [ ocaml libelf git mercurial ] # git and mercurial are necessary because of https://github.com/facebook/flow/issues/1981 20 + buildInputs = [ ocaml libelf ] 21 21 ++ optionals stdenv.isDarwin [ cf-private CoreServices ]; 22 22 23 23 meta = with stdenv.lib; {