Merge pull request #116701 from vbgl/flow-0.146.0

flow: 0.145.0 → 0.146.0
This commit is contained in:
Mario Rodas 2021-03-18 07:36:27 -05:00 committed by GitHub
commit 87418abe2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "flow"; pname = "flow";
version = "0.145.0"; version = "0.146.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "facebook"; owner = "facebook";
repo = "flow"; repo = "flow";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-6fRKXKh+hB/d2CcmZYYSlMzP1IGCl7fLdXCQ1M0wuY4="; sha256 = "0kxws51hri0b4z7k05li6vg1arcdc7i5jzfibi0iplsfyy14159q";
}; };
installPhase = '' installPhase = ''

View File

@ -12419,7 +12419,7 @@ in
ffuf = callPackage ../tools/security/ffuf { }; ffuf = callPackage ../tools/security/ffuf { };
flow = callPackage ../development/tools/analysis/flow { flow = callPackage ../development/tools/analysis/flow {
ocamlPackages = ocaml-ng.ocamlPackages_4_07; ocamlPackages = ocaml-ng.ocamlPackages_4_09;
inherit (darwin.apple_sdk.frameworks) CoreServices; inherit (darwin.apple_sdk.frameworks) CoreServices;
}; };