mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
15 lines
304 B
Nix
15 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;
|
|
};
|
|
}
|