surf: build only on linux platforms

svn path=/nixpkgs/trunk/; revision=28703
This commit is contained in:
David Guibert 2011-08-20 05:24:19 +00:00
parent bea0f3fba5
commit 93874e90b6

View File

@ -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;
};
}