summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-03-22 16:16:10 +0100
committerLluís Batlle i Rossell <viric@viric.name>2013-03-22 16:16:37 +0100
commit4144141c7b5d0b942e57f84eb352a7e0cc92a6f2 (patch)
treee7fab78ed58ac205ed1815732905c390125f3c7d /pkgs
parent48a871ffb7c04df1feff2a1f771e45608afff6d3 (diff)
downloadnixlib-4144141c7b5d0b942e57f84eb352a7e0cc92a6f2.tar
nixlib-4144141c7b5d0b942e57f84eb352a7e0cc92a6f2.tar.gz
nixlib-4144141c7b5d0b942e57f84eb352a7e0cc92a6f2.tar.bz2
nixlib-4144141c7b5d0b942e57f84eb352a7e0cc92a6f2.tar.lz
nixlib-4144141c7b5d0b942e57f84eb352a7e0cc92a6f2.tar.xz
nixlib-4144141c7b5d0b942e57f84eb352a7e0cc92a6f2.tar.zst
nixlib-4144141c7b5d0b942e57f84eb352a7e0cc92a6f2.zip
Fixing the teamviewer evaluation and builds.
Now tested even the tarball, before committing.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/remote/teamviewer/8.nix2
-rw-r--r--pkgs/top-level/all-packages.nix4
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 cc332d65dece..8113e33e0a72 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 ad6f6145a42b..1e269b6f97d5 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 { };