zoom-us: fix overriding source

Without this using .overrideAttrs to change the source still uses the
old source.
This commit is contained in:
Bjørn Forsman 2021-05-02 10:00:29 +02:00
parent 1b10b0d579
commit 13cadfac15

View file

@ -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
'';