1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-06 00:46:50 +00:00
flake-parts/modules/apps.nix

95 lines
2.4 KiB
Nix
Raw Normal View History

2022-05-11 22:45:26 +02:00
{ config, lib, flake-modules-core-lib, ... }:
let
inherit (lib)
filterAttrs
mapAttrs
mkOption
optionalAttrs
types
;
inherit (flake-modules-core-lib)
mkSubmoduleOptions
2022-05-13 10:15:21 +02:00
mkPerSystemOption
2022-05-11 22:45:26 +02:00
;
programType = lib.types.coercedTo lib.types.package getExe lib.types.str;
getExe = x:
"${lib.getBin x}/bin/${x.meta.mainProgram or (throw ''Package ${x.name or ""} does not have meta.mainProgram set, so I don't know how to find the main executable. You can set meta.mainProgram, or pass the full path to executable, e.g. program = "''${pkg}/bin/foo"'')}";
getBin = x:
if !x?outputSpecified || !x.outputSpecified
2022-05-17 09:55:23 +02:00
then x.bin or x.out or x
else x;
2022-05-11 22:45:26 +02:00
appType = lib.types.submodule {
options = {
type = mkOption {
2022-05-17 09:55:23 +02:00
type = lib.types.enum [ "app" ];
2022-05-11 22:45:26 +02:00
default = "app";
description = ''
A type tag for <literal>apps</literal> consumers.
'';
};
program = mkOption {
type = programType;
description = ''
A path to an executable or a derivation with <literal>meta.mainProgram</literal>.
'';
};
};
};
in
{
options = {
flake = mkSubmoduleOptions {
apps = mkOption {
type = types.lazyAttrsOf (types.lazyAttrsOf appType);
default = { };
description = ''
Programs runnable with nix run <literal>.#&lt;name></literal>.
'';
example = lib.literalExpression or lib.literalExample ''
2022-05-11 22:45:26 +02:00
{
x86_64-linux.default.program = "''${config.packages.hello}/bin/hello";
}
'';
};
};
2022-05-17 09:55:23 +02:00
perSystem = mkPerSystemOption
({ config, system, ... }: {
options = {
apps = mkOption {
type = types.lazyAttrsOf appType;
default = { };
description = ''
Programs runnable with nix run <literal>.#&lt;name></literal>.
'';
example = lib.literalExpression or lib.literalExample ''
{
default.program = "''${config.packages.hello}/bin/hello";
}
'';
};
};
});
2022-05-11 22:45:26 +02:00
};
config = {
flake.apps =
mapAttrs
(k: v: v.apps)
(filterAttrs
(k: v: v.apps != null)
config.allSystems
);
perInput = system: flake:
optionalAttrs (flake?apps.${system}) {
apps = flake.apps.${system};
};
};
}