From 51eab4deaa78c777bace94578e27b7483f3ed096 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Mon, 7 Nov 2011 19:24:01 +0000 Subject: [PATCH] Only build clang on Linux until the wrapper is set up for non-Linux stdenvs svn path=/nixpkgs/trunk/; revision=30302 --- pkgs/development/compilers/llvm/clang.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/llvm/clang.nix b/pkgs/development/compilers/llvm/clang.nix index 8e2fa723df6..1763e1e9e16 100644 --- a/pkgs/development/compilers/llvm/clang.nix +++ b/pkgs/development/compilers/llvm/clang.nix @@ -53,6 +53,6 @@ stdenv.mkDerivation { description = "A C language family frontend for LLVM"; license = "BSD"; maintainers = with stdenv.lib.maintainers; [viric shlevy]; - platforms = with stdenv.lib.platforms; all; + platforms = with stdenv.lib.platforms; linux; }; }