forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
darwin/stdenv: tapi stub based bootstrap
Fixes bootstrapping on macOS Big Sur.
- Loading branch information
1 parent
2e7a665
commit 923f606
Showing
5 changed files
with
61 additions
and
100 deletions.
There are no files selected for viewing
41 changes: 0 additions & 41 deletions
41
pkgs/os-specific/darwin/apple-source-releases/Libsystem/reexported_libraries
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
{ stdenv, fetchFromGitHub }: | ||
{ stdenv, fetchurl }: | ||
|
||
stdenv.mkDerivation { | ||
pname = "darwin-stubs"; | ||
version = "10.12"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "NixOS"; | ||
repo = "darwin-stubs"; | ||
rev = "80b3d4a57d3454c975eefd984c804dbd76f04ef2"; | ||
sha256 = "0sslg4rmskms8ixixv1gvnrvvvmn723vbfjj6mcn24fj2ncg38y7"; | ||
src = fetchurl { | ||
url = "https://github.com/NixOS/darwin-stubs/releases/download/v20201216/10.12.tar.gz"; | ||
sha256 = "1fyd3xig7brkzlzp0ql7vyfj5sp8iy56kgp548mvicqdyw92adgm"; | ||
}; | ||
|
||
dontBuild = true; | ||
|
||
installPhase = '' | ||
mkdir $out | ||
cp -vr stubs/$version/* $out | ||
mv * $out | ||
''; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters