mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
55 lines
1.2 KiB
Nix
55 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 {
|
|
packages = mkOption {
|
|
type = types.lazyAttrsOf (types.lazyAttrsOf types.package);
|
|
default = { };
|
|
description = ''
|
|
Per system an attribute set of packages.
|
|
nix build .#<name> will build packages.<system>.<name>.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
config = {
|
|
flake.packages =
|
|
mapAttrs
|
|
(k: v: v.packages)
|
|
(filterAttrs
|
|
(k: v: v.packages != null)
|
|
config.allSystems
|
|
);
|
|
|
|
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 = { };
|
|
description = ''
|
|
An attribute set of packages to be built by nix build .#<name>.
|
|
nix build .#<name> will build packages.<name>.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|