From a3c649f969daa3428a4ce9981cbf2ada65e7cf69 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Wed, 5 Jan 2011 09:31:49 +0000 Subject: [PATCH] only build asymptote on linux, because it has never built on any platforms other than linux svn path=/nixpkgs/trunk/; revision=25406 --- pkgs/tools/graphics/asymptote/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/graphics/asymptote/default.nix b/pkgs/tools/graphics/asymptote/default.nix index 92b8a980a8d..303fc086874 100644 --- a/pkgs/tools/graphics/asymptote/default.nix +++ b/pkgs/tools/graphics/asymptote/default.nix @@ -49,6 +49,6 @@ rec { a.lib.maintainers.raskin ]; platforms = with a.lib.platforms; - linux ++ freebsd ++ darwin; + linux; }; }