Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #187643 from marsam/update-flow

flow: 0.183.1 -> 0.185.1

authored by Mario Rodas and committed by GitHub fd58e457 ede46e4f

+3 -3
+3 -3
pkgs/development/tools/analysis/flow/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "flow"; 5 - version = "0.183.1"; 5 + version = "0.185.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "facebook"; 9 9 repo = "flow"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-RaME+vbmF/hDjwB/ZdvL+/ZgLtWeETMpi/xBlK1EvA0="; 11 + sha256 = "sha256-GZ1DzMlhwIyQtkNYXU6sLoqRNinOXN+A7ImkaNSGuJY="; 12 12 }; 13 13 14 14 makeFlags = [ "FLOW_RELEASE=1" ]; ··· 18 18 install -Dm644 resources/shell/bash-completion $out/share/bash-completion/completions/flow 19 19 ''; 20 20 21 - buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml-migrate-parsetree-2 dtoa core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec visitors wtf8 ]) 21 + buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml-migrate-parsetree-2 dtoa fileutils core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec visitors wtf8 ]) 22 22 ++ lib.optionals stdenv.isDarwin [ CoreServices ]; 23 23 24 24 meta = with lib; {