summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-01-22 16:29:28 -0500
committerShea Levy <shea@shealevy.com>2013-01-22 16:29:28 -0500
commit296cd6600943d5a349cda55a36137331f8c3eec8 (patch)
treea5cce3ce1d98bcaa06e76b8854e2fbd1184c6572 /pkgs
parent50b939ce54d4a7d822c28fc2a3ef94b2ae801bc1 (diff)
downloadnixpkgs-296cd6600943d5a349cda55a36137331f8c3eec8.tar
nixpkgs-296cd6600943d5a349cda55a36137331f8c3eec8.tar.gz
nixpkgs-296cd6600943d5a349cda55a36137331f8c3eec8.tar.bz2
nixpkgs-296cd6600943d5a349cda55a36137331f8c3eec8.tar.lz
nixpkgs-296cd6600943d5a349cda55a36137331f8c3eec8.tar.xz
nixpkgs-296cd6600943d5a349cda55a36137331f8c3eec8.tar.zst
nixpkgs-296cd6600943d5a349cda55a36137331f8c3eec8.zip
clang requires libxlm2, on darwin at least
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/llvm/clang.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/llvm/clang.nix b/pkgs/development/compilers/llvm/clang.nix
index 39956666a07..0c578828888 100644
--- a/pkgs/development/compilers/llvm/clang.nix
+++ b/pkgs/development/compilers/llvm/clang.nix
@@ -1,11 +1,11 @@
-{ stdenv, fetchurl, perl, groff, llvm, cmake }:
+{ stdenv, fetchurl, perl, groff, llvm, cmake, libxml2 }:
 
 let version = "3.2"; in
 
 stdenv.mkDerivation {
   name = "clang-${version}";
 
-  buildInputs = [ perl llvm groff cmake ];
+  buildInputs = [ perl llvm groff cmake libxml2 ];
 
   patches = stdenv.lib.optional (stdenv.gcc.libc != null) ./clang-purity.patch;