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/devShell.nix
2021-10-27 11:05:52 +02:00

44 lines
841 B
Nix

{ config, lib, flake-modules-core-lib, ... }:
let
inherit (lib)
filterAttrs
genAttrs
mapAttrs
mkOption
optionalAttrs
types
;
in
{
options = {
flake = {
devShell = mkOption {
type = types.lazyAttrsOf types.package;
default = { };
};
};
};
config = {
flake.devShell =
mapAttrs
(k: v: v.devShell)
(filterAttrs
(k: v: v.devShell != null)
(genAttrs config.systems config.perSystem)
);
perInput = system: flake:
optionalAttrs (flake?devShell.${system}) {
devShell = flake.devShell.${system};
};
perSystem = system: { config, ... }: {
_file = ./devShell.nix;
options = {
devShell = mkOption {
type = types.nullOr types.package;
};
};
};
};
}