mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-11 04:48:00 +03:00
edd57d380d
- Fixes the IPC bug - Fixes the terminfo bug - Moves the OSX SDK out of our nixcrpkgs fork. - Vendor nixcrpkgs instead of having it be a submodule.
13 lines
319 B
Nix
13 lines
319 B
Nix
let
|
|
|
|
nixpkgs = import ./nixpkgs.nix;
|
|
|
|
osx_sdk = builtins.fetchurl {
|
|
sha256 = "89aa34dfe5bcbc7d53d3c55a84b35ac810ecfbcdd16a64c9667992b0c36c60c4";
|
|
url = "https://github.com/phracker/MacOSX-SDKs/releases/download/10.13/MacOSX10.11.sdk.tar.xz";
|
|
};
|
|
|
|
in
|
|
|
|
import ./nixcrpkgs/top.nix { inherit osx_sdk nixpkgs; }
|