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
opencomposite: add meta.platforms (#357198)
[NixPkgs.git]
/
lib
/
tests
/
modules
/
merge-typeless-option.nix
blob
fcd72634c1666e7919fa3e54a4358a028bd02942
1
{ ... }:
2
3
let
4
typeless =
5
{ lib, ... }:
6
7
{
8
options.group = lib.mkOption { };
9
};
10
childOfTypeless =
11
{ lib, ... }:
12
13
{
14
options.group.enable = lib.mkEnableOption "nothing";
15
};
16
in
17
18
{
19
imports = [
20
typeless
21
childOfTypeless
22
];
23
24
config.group.enable = false;
25
}