Skip to content

Commit

Permalink
zoom-us: fix overriding source
Browse files Browse the repository at this point in the history
Without this using .overrideAttrs to change the source still uses the
old source.

(cherry picked from commit 13cadfa)
  • Loading branch information
bjornfor committed May 2, 2021
1 parent c34127b commit dc326c7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -79,7 +79,7 @@ in stdenv.mkDerivation rec {
installPhase = ''
runHook preInstall
mkdir $out
tar -C $out -xf ${src}
tar -C $out -xf $src
mv $out/usr/* $out/
runHook postInstall
'';
Expand Down

0 comments on commit dc326c7

Please sign in to comment.