mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
216c5dc10d
Changing this later on would break external links into the manual.
14 lines
314 B
Nix
14 lines
314 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) mkOption types mdDoc;
|
|
in
|
|
{
|
|
options.name = mkOption {
|
|
description = mdDoc ''
|
|
The name of the test.
|
|
|
|
This is used in the derivation names of the [{option}`driver`](#test-opt-driver) and [{option}`test`](#test-opt-test) runner.
|
|
'';
|
|
type = types.str;
|
|
};
|
|
}
|