···1{ stdenv
2, fetch
03, perl
4, groff
5, cmake
···45 propagatedBuildInputs = [ ncurses zlib ];
4647 postPatch = ""
000000048 # hacky fix: New LLVM releases require a newer OS X SDK than
49 # 10.9. This is a temporary measure until nixpkgs darwin support is
50 # updated.
···1{ stdenv
2, fetch
3+, fetchpatch
4, perl
5, groff
6, cmake
···46 propagatedBuildInputs = [ ncurses zlib ];
4748 postPatch = ""
49+ + ''
50+ patch -p1 --reverse < ${fetchpatch {
51+ name = "fix-red-icons.diff"; # https://bugs.freedesktop.org/show_bug.cgi?id=99078
52+ url = https://github.com/llvm-mirror/llvm/commit/c280d74837d8.diff;
53+ sha256 = "11sq86spw41v72f676igksapdlsgh7fiqp5qkkmgfj0ndqcn9skf";
54+ }}
55+ ''
56 # hacky fix: New LLVM releases require a newer OS X SDK than
57 # 10.9. This is a temporary measure until nixpkgs darwin support is
58 # updated.