mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-15 18:12:47 +03:00
12 lines
263 B
Nix
12 lines
263 B
Nix
|
let
|
||
|
|
||
|
util = import ./util.nix;
|
||
|
nixcrpkgs = import ../nixcrpkgs.nix;
|
||
|
release = import ../release.nix;
|
||
|
all_releases = util.flattenSetPrefix release;
|
||
|
crosstools = { inherit (nixcrpkgs.native) pkgconf; };
|
||
|
|
||
|
in
|
||
|
|
||
|
crosstools // all_releases
|