1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2024-12-15 17:50:53 +00:00
flake-parts/modules/legacyPackages.nix

44 lines
1,003 B
Nix
Raw Normal View History

2022-05-25 14:36:33 +00:00
{ config, lib, flake-parts-lib, ... }:
2021-10-27 09:05:52 +00:00
let
inherit (lib)
filterAttrs
mapAttrs
mkOption
optionalAttrs
types
;
2022-05-25 14:36:33 +00:00
inherit (flake-parts-lib)
2021-11-21 14:47:11 +00:00
mkSubmoduleOptions
mkPerSystemOption
2021-11-21 14:47:11 +00:00
;
2021-10-27 09:05:52 +00:00
in
{
options = {
2021-11-21 14:47:11 +00:00
flake = mkSubmoduleOptions {
2021-10-27 09:05:52 +00:00
legacyPackages = mkOption {
type = types.lazyAttrsOf (types.lazyAttrsOf types.raw);
2021-10-27 09:05:52 +00:00
default = { };
2021-11-21 13:30:12 +00:00
description = ''
Per system, an attribute set of unmergeable values. This is also used by <literal>nix build .#&lt;attrpath></literal>.
2021-11-21 13:30:12 +00:00
'';
2021-10-27 09:05:52 +00:00
};
};
perSystem = mkPerSystemOption ({ config, ... }: {
options = {
legacyPackages = mkOption {
type = types.lazyAttrsOf types.raw;
default = { };
description = ''
An attribute set of unmergeable values. This is also used by <literal>nix build .#&lt;attrpath></literal>.
'';
};
};
});
2021-10-27 09:05:52 +00:00
};
2021-10-27 09:05:52 +00:00
config = {
2022-10-26 11:16:04 +00:00
transposition.legacyPackages = { };
2021-10-27 09:05:52 +00:00
};
}