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.
17 lines
403 B
Nix
17 lines
403 B
Nix
{ crossenv }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "gmp-${version}";
|
|
version = "6.1.2";
|
|
builder = ./builder.sh;
|
|
native_inputs = [ crossenv.nixpkgs.m4 ];
|
|
|
|
src = crossenv.nixpkgs.fetchurl {
|
|
urls = [ "mirror://gnu/gmp/${name}.tar.bz2"
|
|
"ftp://ftp.gmplib.org/pub/${name}/${name}.tar.bz2"
|
|
];
|
|
sha256 = "1clg7pbpk6qwxj5b2mw0pghzawp2qlm3jf9gdd8i6fl6yh2bnxaj";
|
|
};
|
|
|
|
}
|