mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{ config, lib, inputs, withSystem, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.pre-commit-hooks-nix.flakeModule
|
|
inputs.hercules-ci-effects.flakeModule # herculesCI attr
|
|
];
|
|
systems = [ "x86_64-linux" "aarch64-darwin" ];
|
|
|
|
hercules-ci.flake-update = {
|
|
enable = true;
|
|
autoMergeMethod = "merge";
|
|
when.dayOfMonth = 1;
|
|
};
|
|
|
|
perSystem = { config, self', inputs', pkgs, ... }: {
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
nativeBuildInputs = [
|
|
pkgs.nixpkgs-fmt
|
|
pkgs.pre-commit
|
|
pkgs.hci
|
|
];
|
|
shellHook = ''
|
|
${config.pre-commit.installationScript}
|
|
'';
|
|
};
|
|
|
|
pre-commit = {
|
|
inherit pkgs; # should make this default to the one it can get via follows
|
|
settings = {
|
|
hooks.nixpkgs-fmt.enable = true;
|
|
};
|
|
};
|
|
|
|
checks.eval-tests =
|
|
let tests = import ./tests/eval-tests.nix;
|
|
in tests.runTests pkgs.emptyFile // { internals = tests; };
|
|
|
|
};
|
|
flake = {
|
|
# for repl exploration / debug
|
|
config.config = config;
|
|
options.mySystem = lib.mkOption { default = config.allSystems.${builtins.currentSystem}; };
|
|
config.effects = withSystem "x86_64-linux" ({ config, pkgs, hci-effects, ... }: {
|
|
tests = {
|
|
template = pkgs.callPackage ./tests/template.nix { inherit hci-effects; };
|
|
};
|
|
});
|
|
};
|
|
}
|