From 48a3ea0f8148bffec8067bd47ebc75b16cb4bb01 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sat, 10 Nov 2018 22:01:44 -0500 Subject: wire-desktop: don't explicitly set phases part of #28910 --- .../networking/instant-messengers/wire-desktop/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'pkgs/applications/networking/instant-messengers') 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; { -- cgit 1.4.1