2021-10-27 09:05:52 +00:00
|
|
|
{ config, lib, flake-modules-core-lib, ... }:
|
|
|
|
let
|
|
|
|
inherit (lib)
|
|
|
|
filterAttrs
|
|
|
|
genAttrs
|
|
|
|
mapAttrs
|
|
|
|
mkOption
|
|
|
|
optionalAttrs
|
|
|
|
types
|
|
|
|
;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
flake = {
|
|
|
|
packages = mkOption {
|
|
|
|
type = types.lazyAttrsOf (types.lazyAttrsOf types.package);
|
|
|
|
default = { };
|
2021-11-21 13:30:12 +00:00
|
|
|
description = ''
|
|
|
|
Per system an attribute set of packages.
|
|
|
|
nix build .#<name> will build packages.<system>.<name>.
|
|
|
|
'';
|
2021-10-27 09:05:52 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
|
|
|
flake.packages =
|
|
|
|
mapAttrs
|
|
|
|
(k: v: v.packages)
|
|
|
|
(filterAttrs
|
|
|
|
(k: v: v.packages != null)
|
|
|
|
(genAttrs config.systems config.perSystem)
|
|
|
|
);
|
|
|
|
|
|
|
|
perInput = system: flake:
|
|
|
|
optionalAttrs (flake?packages.${system}) {
|
|
|
|
packages = flake.packages.${system};
|
|
|
|
};
|
|
|
|
|
|
|
|
perSystem = system: { config, ... }: {
|
|
|
|
_file = ./packages.nix;
|
|
|
|
options = {
|
|
|
|
packages = mkOption {
|
|
|
|
type = types.lazyAttrsOf types.package;
|
|
|
|
default = { };
|
2021-11-21 13:30:12 +00:00
|
|
|
description = ''
|
|
|
|
An attribute set of packages to be built by nix build .#<name>.
|
|
|
|
nix build .#<name> will build packages.<name>.
|
|
|
|
'';
|
2021-10-27 09:05:52 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|