about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2021-05-02 10:00:29 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2021-05-02 17:38:55 +0200
commit13cadfac151df84dc61b1062b2ec648b0ca29af6 (patch)
tree54ff0e687faa315939712a2907eeb61b7db0609d /pkgs/applications/networking/instant-messengers/zoom-us/default.nix
parent1b10b0d57979cc289c69301d754838a1c8562f43 (diff)
zoom-us: fix overriding source
Without this using .overrideAttrs to change the source still uses the
old source.
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/zoom-us/default.nix')
-rw-r--r--pkgs/applications/networking/instant-messengers/zoom-us/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
index fd15e77c8bea3..962542537124a 100644
--- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
+++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix
@@ -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
   '';