mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 18:12:47 +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.
21 lines
437 B
Nix
21 lines
437 B
Nix
{ crossenv }:
|
|
|
|
if crossenv.os != "windows" then "windows only" else
|
|
|
|
crossenv.make_derivation rec {
|
|
name = "devcon-${version}";
|
|
|
|
version = "2017-05-01";
|
|
|
|
src = crossenv.nixpkgs.fetchFromGitHub {
|
|
owner = "Microsoft";
|
|
repo = "Windows-driver-samples";
|
|
rev = "4c5c5e0297c7a61e151f92af702cdac650a14489";
|
|
sha256 = "1drq26bnad98xqn805qx0b6g4y65lmrdj7v40b3jhhzdsp8993pf";
|
|
};
|
|
|
|
patches = [];
|
|
|
|
builder = ./builder.sh;
|
|
}
|