mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 01:41:37 +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
433 B
Nix
17 lines
433 B
Nix
{ crossenv }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "pdcurses-${version}";
|
|
|
|
version = "3.4";
|
|
|
|
src = crossenv.nixpkgs.fetchurl {
|
|
# Sourceforge went down. The original URL was:
|
|
# url = "mirror://sourceforge/pdcurses/PDCurses-${version}.tar.gz";
|
|
url = "https://files.tmphax.com/repo1/pdcurses-${version}.tar.gz";
|
|
sha256 = "0jz6l8552fnf1j542yhzifgknrdzrisxg158ks0l87g777a8zba6";
|
|
};
|
|
|
|
builder = ./builder.sh;
|
|
}
|