apple-source-release: deprecate phases (#161535)

This commit is contained in:
Felix Bühler 2023-01-07 23:20:01 +01:00 committed by GitHub
parent 5db02d4fa6
commit 1302f3bd27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 8 deletions

View file

@ -5,8 +5,6 @@ appleDerivation' stdenv {
srcs = lib.attrValues IOKitSrcs;
sourceRoot = ".";
phases = [ "unpackPhase" "installPhase" ];
__propagatedImpureHostDeps = [
"/System/Library/Frameworks/IOKit.framework/IOKit"
"/System/Library/Frameworks/IOKit.framework/Resources"

View file

@ -1,8 +1,6 @@
{ appleDerivation', stdenv, darwin-stubs }:
appleDerivation' stdenv {
phases = [ "unpackPhase" "installPhase" ];
__propagatedImpureHostDeps = [
"/System/Library/Frameworks/Security.framework/Security"
"/System/Library/Frameworks/Security.framework/Resources"

View file

@ -1,8 +1,7 @@
{ appleDerivation', stdenvNoCC }:
appleDerivation' stdenvNoCC {
phases = [ "unpackPhase" "installPhase" ];
dontBuild = true;
installPhase = ''
mkdir -p $out/include
cp mDNSShared/dns_sd.h $out/include

View file

@ -1,8 +1,6 @@
{ appleDerivation, darwin-stubs }:
appleDerivation {
phases = [ "unpackPhase" "installPhase" ];
# Not strictly necessary, since libSystem depends on it, but it's nice to be explicit so we
# can easily find out what's impure.
__propagatedImpureHostDeps = [