mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-14 11:47:31 +00:00
58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ config, lib, flake-parts-lib, ... }:
|
|
let
|
|
inherit (lib)
|
|
mkOption
|
|
types
|
|
;
|
|
inherit (flake-parts-lib)
|
|
mkTransposedPerSystemModule
|
|
;
|
|
|
|
programType = lib.types.coercedTo derivationType getExe lib.types.str;
|
|
|
|
derivationType = lib.types.package // {
|
|
check = lib.isDerivation;
|
|
};
|
|
|
|
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
|
|
then x.bin or x.out or x
|
|
else x;
|
|
|
|
appType = lib.types.submodule {
|
|
options = {
|
|
type = mkOption {
|
|
type = lib.types.enum [ "app" ];
|
|
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
|
|
mkTransposedPerSystemModule {
|
|
name = "apps";
|
|
option = mkOption {
|
|
type = types.lazyAttrsOf appType;
|
|
default = { };
|
|
description = ''
|
|
Programs runnable with nix run <literal>.#<name></literal>.
|
|
'';
|
|
example = lib.literalExpression or lib.literalExample ''
|
|
{
|
|
default.program = "''${config.packages.hello}/bin/hello";
|
|
}
|
|
'';
|
|
};
|
|
file = ./apps.nix;
|
|
}
|