mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ config, lib, flake-parts-lib, ... }:
|
|
let
|
|
inherit (lib)
|
|
filterAttrs
|
|
mapAttrs
|
|
mkOption
|
|
optionalAttrs
|
|
types
|
|
;
|
|
inherit (flake-parts-lib)
|
|
mkSubmoduleOptions
|
|
mkPerSystemOption
|
|
;
|
|
in
|
|
{
|
|
options = {
|
|
flake = mkSubmoduleOptions {
|
|
devShells = mkOption {
|
|
type = types.lazyAttrsOf (types.lazyAttrsOf types.package);
|
|
default = { };
|
|
description = ''
|
|
Per system an attribute set of packages used as shells.
|
|
<literal>nix develop .#<name></literal> will run <literal>devShells.<system>.<name></literal>.
|
|
'';
|
|
};
|
|
};
|
|
|
|
perSystem = mkPerSystemOption
|
|
({ config, system, ... }: {
|
|
options = {
|
|
devShells = mkOption {
|
|
type = types.lazyAttrsOf types.package;
|
|
default = { };
|
|
description = ''
|
|
An attribute set of packages to be built by <literal>nix develop .#<name></literal>.
|
|
<literal>nix build .#<name></literal> will run <literal>devShells.<name></literal>.
|
|
'';
|
|
};
|
|
};
|
|
});
|
|
};
|
|
config = {
|
|
transposition.devShells = { };
|
|
};
|
|
}
|