depot/third_party/nixpkgs/lib/tests/modules/shorthand-meta.nix

25 lines
399 B
Nix

{ lib, ... }:
let
inherit (lib) types mkOption;
in
{
imports = [
(
{ config, ... }:
{
options = {
meta.foo = mkOption {
type = types.listOf types.str;
};
result = mkOption { default = lib.concatStringsSep " " config.meta.foo; };
};
}
)
{
meta.foo = [
"one"
"two"
];
}
];
}