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
dxvk_1: fix build compatibility with GCC 14 (#360918)
[NixPkgs.git]
/
lib
/
tests
/
modules
/
attrsOf-conditional-check.nix
blob
3e7a4dbfe2bd76c98944b99a6c0d00f7df5f2819
1
{ lib, config, ... }:
2
{
3
options.conditionalWorks = lib.mkOption {
4
default = !config.value ? foo;
5
};
6
7
config.value.foo = lib.mkIf false "should not be defined";
8
}