From 4144141c7b5d0b942e57f84eb352a7e0cc92a6f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 22 Mar 2013 16:16:10 +0100 Subject: [PATCH] Fixing the teamviewer evaluation and builds. Now tested even the tarball, before committing. --- pkgs/applications/networking/remote/teamviewer/8.nix | 2 +- pkgs/top-level/all-packages.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/remote/teamviewer/8.nix b/pkgs/applications/networking/remote/teamviewer/8.nix index cc332d65dec..8113e33e0a7 100644 --- a/pkgs/applications/networking/remote/teamviewer/8.nix +++ b/pkgs/applications/networking/remote/teamviewer/8.nix @@ -6,7 +6,7 @@ # It doesn't want to start unless teamviewerd is running as root. # I haven't tried to make the daemon run. -assert stdenv.system = "i686-linux"; +assert stdenv.system == "i686-linux"; let topath = "${wine}/bin"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ad6f6145a42..1e269b6f97d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1629,10 +1629,10 @@ let tcpdump = callPackage ../tools/networking/tcpdump { }; - teamviewer = callPackage ../applications/networking/remote/teamviewer { }; + teamviewer = callPackage_i686 ../applications/networking/remote/teamviewer { }; # Work In Progress: it doesn't start unless running a daemon as root - teamviewer8 = lowPrio (callPackage ../applications/networking/remote/teamviewer/8.nix { }); + teamviewer8 = lowPrio (callPackage_i686 ../applications/networking/remote/teamviewer/8.nix { }); telnet = callPackage ../tools/networking/telnet { };