summaryrefslogtreecommitdiffstats
path: root/nixos/lib/testing/meta.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/lib/testing/meta.nix')
-rw-r--r--nixos/lib/testing/meta.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/nixos/lib/testing/meta.nix b/nixos/lib/testing/meta.nix
index 805b7520edff..529fe714fcf6 100644
--- a/nixos/lib/testing/meta.nix
+++ b/nixos/lib/testing/meta.nix
@@ -1,11 +1,11 @@
{ lib, ... }:
let
- inherit (lib) types mkOption mdDoc;
+ inherit (lib) types mkOption;
in
{
options = {
meta = lib.mkOption {
- description = mdDoc ''
+ description = ''
The [`meta`](https://nixos.org/manual/nixpkgs/stable/#chap-meta) attributes that will be set on the returned derivations.
Not all [`meta`](https://nixos.org/manual/nixpkgs/stable/#chap-meta) attributes are supported, but more can be added as desired.
@@ -16,24 +16,31 @@ in
maintainers = lib.mkOption {
type = types.listOf types.raw;
default = [];
- description = mdDoc ''
+ description = ''
The [list of maintainers](https://nixos.org/manual/nixpkgs/stable/#var-meta-maintainers) for this test.
'';
};
timeout = lib.mkOption {
type = types.nullOr types.int;
default = 3600; # 1 hour
- description = mdDoc ''
+ description = ''
The [{option}`test`](#test-opt-test)'s [`meta.timeout`](https://nixos.org/manual/nixpkgs/stable/#var-meta-timeout) in seconds.
'';
};
broken = lib.mkOption {
type = types.bool;
default = false;
- description = mdDoc ''
+ description = ''
Sets the [`meta.broken`](https://nixos.org/manual/nixpkgs/stable/#var-meta-broken) attribute on the [{option}`test`](#test-opt-test) derivation.
'';
};
+ platforms = lib.mkOption {
+ type = types.listOf types.raw;
+ default = lib.platforms.linux;
+ description = ''
+ Sets the [`meta.platforms`](https://nixos.org/manual/nixpkgs/stable/#var-meta-platforms) attribute on the [{option}`test`](#test-opt-test) derivation.
+ '';
+ };
};
};
default = {};