0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

lib/tests: Check for nested option-dependent definitions

This commit is contained in:
Silvan Mosberger 2020-03-19 03:46:50 +01:00
parent 9eecf2d057
commit 742e3fc002
No known key found for this signature in database
GPG key ID: E8F1E9EAD284E17D
4 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ lib, ... }:
{
options.set = {
value = lib.mkOption {
type = lib.types.ints.positive;
};
};
}