mirror of
https://github.com/urbit/shrub.git
synced 2024-12-27 14:17:13 +03:00
17 lines
238 B
Nix
17 lines
238 B
Nix
|
# Note: This only seems to work on Windows.
|
||
|
|
||
|
{ crossenv }:
|
||
|
|
||
|
let
|
||
|
|
||
|
pdcurses = import ./lib.nix {
|
||
|
inherit crossenv;
|
||
|
};
|
||
|
|
||
|
examples = import ./examples.nix {
|
||
|
inherit crossenv pdcurses;
|
||
|
};
|
||
|
|
||
|
in
|
||
|
pdcurses // { inherit examples; }
|