shrub/nix/nixcrpkgs/pkgs/pdcurses/lib.nix
benjamin-tlon edd57d380d
Finish cc-release cross-compilation. (#1202)
- 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.
2019-04-23 19:50:38 -07:00

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;
}