2021-01-24 19:14:42 +01:00
|
|
|
let
|
|
|
|
inherit (default.inputs.nixos.lib) recurseIntoAttrs;
|
|
|
|
|
|
|
|
default = (import ../compat).defaultNix;
|
|
|
|
|
|
|
|
packages = import ../default.nix;
|
|
|
|
|
2021-02-02 09:34:12 +01:00
|
|
|
shell = recurseIntoAttrs {
|
|
|
|
inherit (default.devShell)
|
|
|
|
i686-linux x86_64-linux;
|
|
|
|
};
|
2021-01-24 19:14:42 +01:00
|
|
|
|
2021-02-02 09:34:12 +01:00
|
|
|
ci = recurseIntoAttrs {
|
|
|
|
nixos = default.nixosConfigurations.ci.config.system.build.toplevel;
|
|
|
|
};
|
2021-01-24 19:14:42 +01:00
|
|
|
in
|
|
|
|
{
|
2021-02-02 09:34:12 +01:00
|
|
|
inherit shell ci;
|
2021-01-24 19:14:42 +01:00
|
|
|
# platforms supported by our hercules-ci agent
|
|
|
|
inherit (packages)
|
|
|
|
i686-linux
|
|
|
|
x86_64-linux
|
|
|
|
aarch64-linux
|
|
|
|
;
|
|
|
|
}
|