mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
Merge #56
56: add formatter schema r=roberth a=zimbatm This is needed for flakes that want to support `nix fmt`. Right now it's missing some testing as I didn't find a test framework for it. Needed by https://github.com/numtide/treefmt/pull/169 Co-authored-by: zimbatm <zimbatm@zimbatm.com> Co-authored-by: Jonas Chevalier <zimbatm@zimbatm.com>
This commit is contained in:
commit
f17e9dba09
2 changed files with 56 additions and 0 deletions
|
@ -6,6 +6,7 @@
|
|||
./modules/darwinModules.nix
|
||||
./modules/devShells.nix
|
||||
./modules/flake.nix
|
||||
./modules/formatter.nix
|
||||
./modules/legacyPackages.nix
|
||||
./modules/moduleWithSystem.nix
|
||||
./modules/nixosConfigurations.nix
|
||||
|
|
55
modules/formatter.nix
Normal file
55
modules/formatter.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{ config, lib, flake-parts-lib, ... }:
|
||||
let
|
||||
inherit (lib)
|
||||
filterAttrs
|
||||
mapAttrs
|
||||
mkOption
|
||||
optionalAttrs
|
||||
types
|
||||
;
|
||||
inherit (flake-parts-lib)
|
||||
mkSubmoduleOptions
|
||||
mkPerSystemOption
|
||||
;
|
||||
in
|
||||
{
|
||||
options = {
|
||||
flake = mkSubmoduleOptions {
|
||||
formatter = mkOption {
|
||||
type = types.lazyAttrsOf types.package;
|
||||
default = { };
|
||||
description = ''
|
||||
Per system package used by <literal>nix fmt</literal>.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
perSystem = mkPerSystemOption ({ config, ... }: {
|
||||
_file = ./formatter.nix;
|
||||
options = {
|
||||
formatter = mkOption {
|
||||
type = types.nullOr types.package;
|
||||
default = null;
|
||||
description = ''
|
||||
A package used by <literal>nix fmt</literal>.
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
};
|
||||
config = {
|
||||
flake.formatter =
|
||||
mapAttrs
|
||||
(k: v: v.formatter)
|
||||
(filterAttrs
|
||||
(k: v: v.formatter != null)
|
||||
config.allSystems
|
||||
);
|
||||
|
||||
perInput = system: flake:
|
||||
optionalAttrs (flake?formatter.${system}) {
|
||||
formatter = flake.formatter.${system};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue