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