2021-01-24 11:14:42 -07:00
|
|
|
let
|
|
|
|
inherit (default.inputs.nixos.lib) recurseIntoAttrs;
|
|
|
|
|
2021-02-03 20:57:41 -07:00
|
|
|
default = (import "${../.}/compat").defaultNix;
|
2021-01-24 11:14:42 -07:00
|
|
|
|
|
|
|
packages = import ../default.nix;
|
|
|
|
|
2021-02-02 01:34:12 -07:00
|
|
|
shell = recurseIntoAttrs {
|
|
|
|
inherit (default.devShell)
|
2021-02-02 23:05:13 -07:00
|
|
|
i686-linux x86_64-linux aarch64-linux;
|
2021-02-02 01:34:12 -07:00
|
|
|
};
|
2021-01-24 11:14:42 -07:00
|
|
|
|
2021-02-02 01:34:12 -07:00
|
|
|
ci = recurseIntoAttrs {
|
2021-02-03 16:41:21 -07:00
|
|
|
nixos = default.nixosConfigurations.NixOS.config.system.build.ci;
|
2021-02-02 01:34:12 -07:00
|
|
|
};
|
2021-01-24 11:14:42 -07:00
|
|
|
in
|
|
|
|
{
|
2021-02-02 01:34:12 -07:00
|
|
|
inherit shell ci;
|
2021-01-24 11:14:42 -07:00
|
|
|
# platforms supported by our hercules-ci agent
|
|
|
|
inherit (packages)
|
|
|
|
i686-linux
|
|
|
|
x86_64-linux
|
|
|
|
aarch64-linux
|
|
|
|
;
|
|
|
|
}
|