mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-18 12:22:10 +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.
14 lines
292 B
Nix
14 lines
292 B
Nix
{ crossenv }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "libsigsegv-${version}";
|
|
version = "2.12";
|
|
|
|
src = crossenv.nixpkgs.fetchurl {
|
|
url = "mirror://gnu/libsigsegv/${name}.tar.gz";
|
|
sha256 = "1dlhqf4igzpqayms25lkhycjq1ccavisx8cnb3y4zapbkqsszq9s";
|
|
};
|
|
|
|
builder = ./builder.sh;
|
|
}
|