mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-17 03:44:34 +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.
27 lines
558 B
Nix
27 lines
558 B
Nix
{ native, host }:
|
|
|
|
native.make_derivation rec {
|
|
name = "binutils-${version}-${host}";
|
|
|
|
version = "2.27";
|
|
|
|
src = native.nixpkgs.fetchurl {
|
|
url = "mirror://gnu/binutils/binutils-${version}.tar.bz2";
|
|
sha256 = "125clslv17xh1sab74343fg6v31msavpmaa1c1394zsqa773g5rn";
|
|
};
|
|
|
|
patches = [
|
|
./deterministic.patch
|
|
];
|
|
|
|
build_inputs = [ native.nixpkgs.bison native.nixpkgs.zlib ];
|
|
|
|
configure_flags =
|
|
"--target=${host} " +
|
|
"--enable-shared " +
|
|
"--enable-deterministic-archives " +
|
|
"--disable-werror ";
|
|
|
|
builder = ./builder.sh;
|
|
}
|