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
364 B
Nix
17 lines
364 B
Nix
{ crossenv, libusbp }:
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "p-load-${version}";
|
|
|
|
version = "2041b02"; # 2.1.0ish
|
|
|
|
src = crossenv.nixpkgs.fetchurl {
|
|
url = "https://github.com/pololu/p-load/archive/${version}.tar.gz";
|
|
sha256 = "07xn0k96pkvirsh45zn9976lwliiqkfx76vy1yrbx6kp55ssp2zp";
|
|
};
|
|
|
|
builder = ./builder.sh;
|
|
|
|
cross_inputs = [ libusbp ];
|
|
}
|