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 #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git]
/
lib
/
tests
/
modules
/
declare-enable.nix
blob
ebee243c756854bc52d33cbbebc32a2648a58323
1
{ lib, ... }:
2
3
{
4
options = {
5
enable = lib.mkOption {
6
default = false;
7
example = true;
8
type = lib.types.bool;
9
description = ''
10
Some descriptive text
11
'';
12
};
13
};
14
}