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-bare-submodule-deep-option.nix
blob
06ad1f6e0a5170446a749c2c10eff874f8fd4408
1
{ lib, ... }:
2
let
3
inherit (lib) mkOption types;
4
in
5
{
6
options.bare-submodule.deep = mkOption {
7
type = types.int;
8
default = 2;
9
};
10
}