packages feed

opt-env-conf-test-0.0.0.2: test_resources/docs/same-help/nix-options.nix

{ lib }:
{
  int = lib.mkOption {
    default = null;
    description = "int or string";
    type = lib.types.nullOr lib.types.int;
  };
  other = lib.mkOption {
    default = null;
    description = "int or string";
    type = lib.types.nullOr lib.types.bool;
  };
  string = lib.mkOption {
    default = null;
    description = "int or string";
    type = lib.types.nullOr lib.types.str;
  };
}