mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 13:39:15 +03:00
13 lines
178 B
Nix
13 lines
178 B
Nix
![]() |
{ lib, ... }:
|
||
|
let
|
||
|
inherit (lib) types mkOption;
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
meta.maintainers = lib.mkOption {
|
||
|
type = types.listOf types.raw;
|
||
|
default = [];
|
||
|
};
|
||
|
};
|
||
|
}
|