mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
packages: Use mkTransposedPerSystemModule
This commit is contained in:
parent
1e5e56e476
commit
96c27dbba0
1 changed files with 11 additions and 34 deletions
|
@ -1,45 +1,22 @@
|
||||||
{ config, lib, flake-parts-lib, ... }:
|
{ config, lib, flake-parts-lib, ... }:
|
||||||
let
|
let
|
||||||
inherit (lib)
|
inherit (lib)
|
||||||
filterAttrs
|
|
||||||
mapAttrs
|
|
||||||
mkOption
|
mkOption
|
||||||
optionalAttrs
|
|
||||||
types
|
types
|
||||||
;
|
;
|
||||||
inherit (flake-parts-lib)
|
inherit (flake-parts-lib)
|
||||||
mkSubmoduleOptions
|
mkTransposedPerSystemModule
|
||||||
mkPerSystemOption
|
|
||||||
;
|
;
|
||||||
in
|
in
|
||||||
{
|
mkTransposedPerSystemModule {
|
||||||
options = {
|
name = "packages";
|
||||||
flake = mkSubmoduleOptions {
|
option = mkOption {
|
||||||
packages = mkOption {
|
type = types.lazyAttrsOf types.package;
|
||||||
type = types.lazyAttrsOf (types.lazyAttrsOf types.package);
|
default = { };
|
||||||
default = { };
|
description = ''
|
||||||
description = ''
|
An attribute set of packages to be built by <literal>nix build .#<name></literal>.
|
||||||
Per system an attribute set of packages.
|
<literal>nix build .#<name></literal> will build <literal>packages.<name></literal>.
|
||||||
<literal>nix build .#<name></literal> will build <literal>packages.<system>.<name></literal>.
|
'';
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
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 .#<name></literal>.
|
|
||||||
<literal>nix build .#<name></literal> will build <literal>packages.<name></literal>.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
config = {
|
|
||||||
transposition.packages = { };
|
|
||||||
};
|
};
|
||||||
|
file = ./packages.nix;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue