Merge pull request #271594 from marsam/update-flow
flow: 0.222.0 -> 0.223.2
This commit is contained in:
commit
0a2cdabe7e
1 changed files with 7 additions and 2 deletions
|
@ -2,13 +2,13 @@
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "flow";
|
||||
version = "0.222.0";
|
||||
version = "0.223.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "facebook";
|
||||
repo = "flow";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-IOy6zsDGUfiSeOalQnku/4uNyjqpz2bMcpmf7Vq9fyI=";
|
||||
hash = "sha256-vjsqQuQxTywSx4c0lnDKrrNr5hfFog9UurhIctq14f4=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
@ -17,6 +17,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
makeFlags = [ "FLOW_RELEASE=1" ];
|
||||
|
||||
# Work around https://github.com/NixOS/nixpkgs/issues/166205.
|
||||
env = lib.optionalAttrs stdenv.cc.isClang {
|
||||
NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 bin/flow $out/bin/flow
|
||||
install -Dm644 resources/shell/bash-completion $out/share/bash-completion/completions/flow
|
||||
|
|
Loading…
Reference in a new issue