1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-14 11:47:31 +00:00
flake-parts/dev/flake-module.nix

82 lines
2.5 KiB
Nix
Raw Normal View History

2024-09-12 14:43:39 +00:00
{ config, lib, inputs, self, withSystem, ... }:
{
imports = [
2022-05-17 08:18:59 +00:00
inputs.pre-commit-hooks-nix.flakeModule
inputs.hercules-ci-effects.flakeModule # herculesCI attr
];
systems = [ "x86_64-linux" "aarch64-darwin" ];
2022-12-22 11:59:35 +00:00
hercules-ci.flake-update = {
enable = true;
autoMergeMethod = "merge";
when.dayOfMonth = 1;
2024-05-02 08:57:55 +00:00
flakes = {
"." = { };
"dev" = { };
};
effect.settings = {
# Only fetch the `lib` subtree.
# NOTE: Users don't have to do this. They are recommended to use follows
# and just use the `nixpkgs` they're already fetching anyway.
# It doesn't have to be `lib/` only!
git.update.script = lib.mkBefore ''
echo 'Fetching nixpkgs-lib tree'
branch="nixos-unstable"
mkdir ~/nixpkgs
git -C ~/nixpkgs init
git -C ~/nixpkgs remote add origin https://github.com/NixOS/nixpkgs.git
git -C ~/nixpkgs fetch origin --filter=blob:none --depth=1 "$branch"
commit="$(git -C ~/nixpkgs rev-parse FETCH_HEAD)"
tree="$(git -C ~/nixpkgs rev-parse FETCH_HEAD:lib)"
echo 'Adjusting nixpkgs-lib.url'
sed -i flake.nix -e \
's^ nixpkgs-lib\.url = ".*^ nixpkgs-lib\.url = "https://github.com/NixOS/nixpkgs/archive/'$tree'.tar.gz"; # '$commit' /lib from '$branch'^'
git diff
grep -F "$tree" flake.nix >/dev/null || {
echo 'failed to write new tree to flake.nix'
exit 1
}
git commit flake.nix -m 'flake.nix: Update nixpkgs-lib tree'
'';
};
2022-12-22 11:59:35 +00:00
};
2023-05-29 17:52:03 +00:00
perSystem = { config, pkgs, ... }: {
2022-05-17 08:18:59 +00:00
devShells.default = pkgs.mkShell {
2022-05-17 08:18:59 +00:00
nativeBuildInputs = [
pkgs.nixpkgs-fmt
pkgs.pre-commit
2022-11-13 11:25:22 +00:00
pkgs.hci
2022-05-17 08:18:59 +00:00
];
shellHook = ''
${config.pre-commit.installationScript}
'';
};
2022-05-18 09:03:42 +00:00
2022-05-17 08:18:59 +00:00
pre-commit = {
inherit pkgs; # should make this default to the one it can get via follows
settings = {
2022-05-17 08:28:03 +00:00
hooks.nixpkgs-fmt.enable = true;
2022-05-17 08:18:59 +00:00
};
};
checks.eval-tests =
2024-09-12 14:43:39 +00:00
let tests = import ./tests/eval-tests.nix { flake-parts = self; };
in tests.runTests pkgs.emptyFile // { internals = tests; };
};
flake = {
# for repl exploration / debug
config.config = config;
options.mySystem = lib.mkOption { default = config.allSystems.${builtins.currentSystem}; };
2023-05-29 17:52:03 +00:00
config.effects = withSystem "x86_64-linux" ({ pkgs, hci-effects, ... }: {
2022-11-13 11:19:55 +00:00
tests = {
template = pkgs.callPackage ./tests/template.nix { inherit hci-effects; };
};
});
};
}