mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 10:21:31 +03:00
23 lines
495 B
Nix
23 lines
495 B
Nix
|
{ crossenv }:
|
||
|
|
||
|
if crossenv.os != "windows" then "windows only" else
|
||
|
|
||
|
crossenv.make_derivation rec {
|
||
|
name = "usbview-${version}";
|
||
|
|
||
|
version = "2017-05-01";
|
||
|
|
||
|
src = crossenv.nixpkgs.fetchFromGitHub {
|
||
|
owner = "Microsoft";
|
||
|
repo = "Windows-driver-samples";
|
||
|
rev = "4c5c5e0297c7a61e151f92af702cdac650a14489";
|
||
|
sha256 = "1drq26bnad98xqn805qx0b6g4y65lmrdj7v40b3jhhzdsp8993pf";
|
||
|
};
|
||
|
|
||
|
patches = [ ./megapatch.patch ];
|
||
|
|
||
|
my_xmlhelper_c = ./my_xmlhelper.c;
|
||
|
|
||
|
builder = ./builder.sh;
|
||
|
}
|