at 24.11-pre 302 B view raw
1{ lib, ... }: 2let 3 inherit (lib) mkOption types; 4in 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}