libc++abi: Fix importing includes from libc++.

And add myself to maintainers. Close #5167.
This commit is contained in:
Vladimir Still 2014-11-28 17:46:39 +01:00 committed by Vladimír Čunát
parent 650226e3c4
commit f9c96df1d5

View File

@ -16,6 +16,7 @@ stdenv.mkDerivation {
postUnpack = ''
unpackFile ${libcxx.src}
cp -r libcxx-*/include libcxxabi*/
'' + lib.optionalString stdenv.isDarwin ''
export TRIPLE=x86_64-apple-darwin
# Hack: NIX_CFLAGS_COMPILE doesn't work here because clang++ isn't
@ -44,7 +45,7 @@ stdenv.mkDerivation {
homepage = http://libcxxabi.llvm.org/;
description = "A new implementation of low level support for a standard C++ library";
license = "BSD";
maintainers = [ stdenv.lib.maintainers.shlevy ];
maintainers = with stdenv.lib.maintainers; [ shlevy vlstill ];
platforms = stdenv.lib.platforms.unix;
};
}