mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
Move perSystem.legacyPackages into options
This commit is contained in:
parent
a329428f20
commit
fdd87732fd
1 changed files with 14 additions and 12 deletions
|
@ -9,6 +9,7 @@ let
|
|||
;
|
||||
inherit (flake-modules-core-lib)
|
||||
mkSubmoduleOptions
|
||||
mkPerSystemOption
|
||||
;
|
||||
in
|
||||
{
|
||||
|
@ -22,7 +23,20 @@ in
|
|||
'';
|
||||
};
|
||||
};
|
||||
|
||||
perSystem = mkPerSystemOption ({ config, ... }: {
|
||||
options = {
|
||||
legacyPackages = mkOption {
|
||||
type = types.lazyAttrsOf types.anything;
|
||||
default = { };
|
||||
description = ''
|
||||
An attribute set of anything. This is also used by <literal>nix build .#<attrpath></literal>.
|
||||
'';
|
||||
};
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
config = {
|
||||
flake.legacyPackages =
|
||||
mapAttrs
|
||||
|
@ -37,17 +51,5 @@ in
|
|||
legacyPackages = flake.legacyPackages.${system};
|
||||
};
|
||||
|
||||
perSystem = system: { config, ... }: {
|
||||
_file = ./legacyPackages.nix;
|
||||
options = {
|
||||
legacyPackages = mkOption {
|
||||
type = types.lazyAttrsOf types.anything;
|
||||
default = { };
|
||||
description = ''
|
||||
An attribute set of anything. This is also used by <literal>nix build .#<attrpath></literal>.
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue