mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 18:31:44 +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.
28 lines
687 B
Nix
28 lines
687 B
Nix
{ crossenv }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "ncurses-${version}";
|
|
version = "6.1-20181027";
|
|
builder = ./builder.sh;
|
|
|
|
# Needs to be the same version.
|
|
native_inputs = [ crossenv.nixpkgs.ncurses ];
|
|
|
|
configureFlags = [
|
|
"--without-debug"
|
|
"--enable-pc-files"
|
|
"--enable-symlinks"
|
|
# "--with-manpage-format=normal"
|
|
"--without-cxx"
|
|
# "--enable-widec"
|
|
];
|
|
|
|
src = crossenv.nixpkgs.fetchurl {
|
|
urls = [
|
|
"https://invisible-mirror.net/archives/ncurses/current/ncurses-${version}.tgz"
|
|
"ftp://ftp.invisible-island.net/ncurses/current/ncurses-${version}.tgz"
|
|
];
|
|
sha256 = "1xn6wpi22jc61158w4ifq6s1fvilhmsy1in2srn3plk8pm0d4902";
|
|
};
|
|
}
|