d2947cfef0
GitOrigin-RevId: 598f83ebeb2235435189cf84d844b8b73e858e0f
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;
|
|
};
|
|
}
|