summary refs log tree commit diff
path: root/pkgs/applications/misc/surf
diff options
context:
space:
mode:
authorDavid Guibert <david.guibert@gmail.com>2011-08-20 05:24:19 +0000
committerDavid Guibert <david.guibert@gmail.com>2011-08-20 05:24:19 +0000
commit93874e90b6815bf6686a1713b53f33af587b9320 (patch)
tree82f7867288b7257f3b2c8155c78d26ed04e706f9 /pkgs/applications/misc/surf
parentbea0f3fba596102e7223b15724c71c8a0e35bdd4 (diff)
downloadnixlib-93874e90b6815bf6686a1713b53f33af587b9320.tar
nixlib-93874e90b6815bf6686a1713b53f33af587b9320.tar.gz
nixlib-93874e90b6815bf6686a1713b53f33af587b9320.tar.bz2
nixlib-93874e90b6815bf6686a1713b53f33af587b9320.tar.lz
nixlib-93874e90b6815bf6686a1713b53f33af587b9320.tar.xz
nixlib-93874e90b6815bf6686a1713b53f33af587b9320.tar.zst
nixlib-93874e90b6815bf6686a1713b53f33af587b9320.zip
surf: build only on linux platforms
svn path=/nixpkgs/trunk/; revision=28703
Diffstat (limited to 'pkgs/applications/misc/surf')
-rw-r--r--pkgs/applications/misc/surf/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/surf/default.nix b/pkgs/applications/misc/surf/default.nix
index 6d9072e48b4e..3164f0c1a94a 100644
--- a/pkgs/applications/misc/surf/default.nix
+++ b/pkgs/applications/misc/surf/default.nix
@@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
       description = "surf is a simple web browser based on WebKit/GTK+. It is able to display websites and follow links. It supports the XEmbed protocol which makes it possible to embed it in another application. Furthermore, one can point surf to another URI by setting its XProperties.";
       homepage = http://surf.suckless.org;
       license = "MIT";
-      platforms = with stdenv.lib.platforms; all;
+      platforms = stdenv.lib.platforms.linux;
   };
 }