mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
clang requires libxlm2, on darwin at least
This commit is contained in:
parent
50b939ce54
commit
296cd66009
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user