From a2e7375459063d1188cce22f1c0c896e5c6ff615 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 25 Feb 2007 09:48:07 +0000 Subject: [PATCH] * Add an platform assertion. svn path=/nixpkgs/trunk/; revision=8039 --- pkgs/applications/misc/acrobat-reader/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/acrobat-reader/default.nix b/pkgs/applications/misc/acrobat-reader/default.nix index deaac7917747..1cbdd09bc58e 100644 --- a/pkgs/applications/misc/acrobat-reader/default.nix +++ b/pkgs/applications/misc/acrobat-reader/default.nix @@ -4,6 +4,8 @@ , fastStart ? false }: +assert stdenv.system == "i686-linux"; + stdenv.mkDerivation { name = "acrobat-reader-7.0.9"; builder = ./builder.sh;