5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
14 lines
304 B
Nix
14 lines
304 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`](#opt-driver) and [{option}`test`](#opt-test) runner.
|
|
'';
|
|
type = types.str;
|
|
};
|
|
}
|