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/packages.nix

55 lines
1.3 KiB
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
2022-05-17 08:10:16 +00:00
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
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.
<literal>nix build .#&lt;name></literal> will build <literal>packages.&lt;system>.&lt;name></literal>.
2021-11-21 13:30:12 +00:00
'';
2021-10-27 09:05:52 +00:00
};
};
2022-05-17 08:10:16 +00:00
perSystem = mkPerSystemOption ({ config, ... }: {
_file = ./packages.nix;
options = {
packages = mkOption {
type = types.lazyAttrsOf types.package;
default = { };
description = ''
An attribute set of packages to be built by <literal>nix build .#&lt;name></literal>.
<literal>nix build .#&lt;name></literal> will build <literal>packages.&lt;name></literal>.
'';
};
};
});
2021-10-27 09:05:52 +00:00
};
config = {
flake.packages =
mapAttrs
(k: v: v.packages)
2022-09-28 17:13:41 +00:00
config.allSystems;
2021-10-27 09:05:52 +00:00
perInput = system: flake:
optionalAttrs (flake?packages.${system}) {
packages = flake.packages.${system};
};
};
}