shrub/nix/nixcrpkgs/pkgs/ion/default.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

22 lines
447 B
Nix

{ crossenv }:
# TODO: SDL integration would be nice, so we can use noir.ion
let
version = "7524dc7"; # 2018-04-30
name = "ion-${version}";
src = crossenv.nixpkgs.fetchurl {
url = "https://github.com/DavidEGrayson/bitwise/archive/${version}.tar.gz";
sha256 = "169j7yhphvcyfbqgi5p1i4lhd9n5a31n99fv2kxyrh7djmr8g2s9";
};
ion = crossenv.make_derivation {
inherit version name src;
builder = ./builder.sh;
};
in
ion