mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
12 lines
352 B
Nix
12 lines
352 B
Nix
# We're doing things a bit differently because Nix doesn't let us
|
|
# split out the dev dependencies and subflakes are broken, let alone "superflakes".
|
|
# See dev/README.md
|
|
let
|
|
flake = import ./dev;
|
|
inherit (flake.inputs.nixpkgs) lib;
|
|
in
|
|
{
|
|
inherit (flake) herculesCI;
|
|
} // {
|
|
checks = lib.recurseIntoAttrs flake.checks.${builtins.currentSystem};
|
|
}
|