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/modules/legacyPackages.nix
2021-11-22 22:01:38 +01:00

53 lines
1.2 KiB
Nix

{ config, lib, flake-modules-core-lib, ... }:
let
inherit (lib)
filterAttrs
mapAttrs
mkOption
optionalAttrs
types
;
inherit (flake-modules-core-lib)
mkSubmoduleOptions
;
in
{
options = {
flake = mkSubmoduleOptions {
legacyPackages = mkOption {
type = types.lazyAttrsOf (types.lazyAttrsOf types.anything);
default = { };
description = ''
Per system, an attribute set of anything. This is also used by nix build .#<attrpath>.
'';
};
};
};
config = {
flake.legacyPackages =
mapAttrs
(k: v: v.legacyPackages)
(filterAttrs
(k: v: v.legacyPackages != null)
config.allSystems
);
perInput = system: flake:
optionalAttrs (flake?legacyPackages.${system}) {
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 nix build .#<attrpath>.
'';
};
};
};
};
}