urbit/nix/nixcrpkgs/pkgs/tic/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

17 lines
381 B
Nix

{ crossenv, qt, libusbp }:
crossenv.make_derivation rec {
name = "tic-${version}";
version = "e1693cd"; # 1.5.0ish
src = crossenv.nixpkgs.fetchurl {
url = "https://github.com/pololu/pololu-tic-software/archive/${version}.tar.gz";
sha256 = "07m75w0walr61yqki7h1ipzbfz7x417g7qnx0p1l6qdz89fyc7i8";
};
builder = ./builder.sh;
cross_inputs = [ libusbp qt ];
}