From 93874e90b6815bf6686a1713b53f33af587b9320 Mon Sep 17 00:00:00 2001 From: David Guibert Date: Sat, 20 Aug 2011 05:24:19 +0000 Subject: [PATCH] surf: build only on linux platforms svn path=/nixpkgs/trunk/; revision=28703 --- pkgs/applications/misc/surf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/surf/default.nix b/pkgs/applications/misc/surf/default.nix index 6d9072e48b4..3164f0c1a94 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; }; }