repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #305886 from wegank/ocaml-jane-street-old-drop
[NixPkgs.git]
/
nixos
/
lib
/
testing
/
name.nix
blob
0682873c7bcd0adb35afdce42a3dd2a112455c82
1
{ lib, ... }:
2
let
3
inherit (lib) mkOption types;
4
in
5
{
6
options.name = mkOption {
7
description = ''
8
The name of the test.
9
10
This is used in the derivation names of the [{option}`driver`](#test-opt-driver) and [{option}`test`](#test-opt-test) runner.
11
'';
12
type = types.str;
13
};
14
}