mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 10:21:31 +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.
15 lines
290 B
Nix
15 lines
290 B
Nix
{ crossenv }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "zlib-${version}";
|
|
|
|
version = "1.2.11";
|
|
|
|
src = crossenv.nixpkgs.fetchurl {
|
|
url = "https://zlib.net/zlib-${version}.tar.gz";
|
|
sha256 = "18dighcs333gsvajvvgqp8l4cx7h1x7yx9gd5xacnk80spyykrf3";
|
|
};
|
|
|
|
builder = ./builder.sh;
|
|
}
|