dxvk_1: fix build compatibility with GCC 14 (#360918)
[NixPkgs.git] / lib / tests / modules / declare-bare-submodule.nix
blob406f484c559567caaeab5bf2171d777d0b663da3
1 { config, lib, ... }:
2 let
3   inherit (lib) mkOption types;
4 in
6   options.bare-submodule = mkOption {
7     type = types.submoduleWith {
8       modules = [ ];
9       shorthandOnlyDefinesConfig = config.shorthandOnlyDefinesConfig;
10     };
11     default = { };
12   };
14   # config-dependent options: won't recommend, but useful for making this test parameterized
15   options.shorthandOnlyDefinesConfig = mkOption {
16     default = false;
17   };