darwin.libauto: mark broken and drop stdenv.lib
This commit is contained in:
parent
5f6e6516e0
commit
b9be1501fe
@ -1,8 +1,8 @@
|
|||||||
{ stdenv, appleDerivation, libdispatch, Libsystem }:
|
{ lib, stdenv, appleDerivation, libdispatch, Libsystem }:
|
||||||
|
|
||||||
appleDerivation {
|
appleDerivation {
|
||||||
# these are included in the pure libc
|
# these are included in the pure libc
|
||||||
buildInputs = stdenv.lib.optionals stdenv.cc.nativeLibc [ libdispatch Libsystem ];
|
buildInputs = lib.optionals stdenv.cc.nativeLibc [ libdispatch Libsystem ];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
cp ${./auto_dtrace.h} ./auto_dtrace.h
|
cp ${./auto_dtrace.h} ./auto_dtrace.h
|
||||||
@ -79,6 +79,8 @@ appleDerivation {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
platforms = stdenv.lib.platforms.darwin;
|
# libauto is only used by objc4/pure.nix , but objc4 is now using the impure approach, so we don't bother to fix this.
|
||||||
|
broken = true;
|
||||||
|
platforms = lib.platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user