about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-11-12 19:01:36 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-11-12 19:01:36 +0100
commit3b052406eaaa466240b948d05b0e483272317e6a (patch)
treed4cd6ff36598c3549f4b717d22fc9b94476b326f /pkgs/applications/networking/instant-messengers
parent3fd80c6215d4403c5b2f0562c1b8d4a92c2ec291 (diff)
parentdaf3297cb46f73522d021e22c4dc7e0eb6920333 (diff)
downloadnixlib-3b052406eaaa466240b948d05b0e483272317e6a.tar
nixlib-3b052406eaaa466240b948d05b0e483272317e6a.tar.gz
nixlib-3b052406eaaa466240b948d05b0e483272317e6a.tar.bz2
nixlib-3b052406eaaa466240b948d05b0e483272317e6a.tar.lz
nixlib-3b052406eaaa466240b948d05b0e483272317e6a.tar.xz
nixlib-3b052406eaaa466240b948d05b0e483272317e6a.tar.zst
nixlib-3b052406eaaa466240b948d05b0e483272317e6a.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/applications/networking/instant-messengers')
-rw-r--r--pkgs/applications/networking/instant-messengers/wire-desktop/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
index 193e306f2286..c685a5b91c1e 100644
--- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix
@@ -72,7 +72,10 @@ in
       categories = "Network;InstantMessaging;Chat;VideoConference";
     };
 
-    phases = [ "unpackPhase" "installPhase" ];
+    dontBuild = true;
+    dontPatchELF = true;
+    dontConfigure = true;
+
     nativeBuildInputs = [ dpkg ];
     unpackPhase = "dpkg-deb -x $src .";
     installPhase = ''
@@ -93,7 +96,7 @@ in
 
       # Desktop file
       mkdir -p "$out/share/applications"
-      cp ${desktopItem}/share/applications/* "$out/share/applications"
+      cp "${desktopItem}/share/applications/"* "$out/share/applications"
     '';
 
     meta = with stdenv.lib; {