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.
  • Loading branch information
bjornfor committed May 2, 2021
1 parent 1b10b0d commit 13cadfa
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 13cadfa

Please sign in to comment.