helpers: add mkPackageOption + refactoring (#144) (#150)

This commit is contained in:
Gaétan Lepage 2023-01-25 19:46:49 +01:00 committed by GitHub
parent d8a86e9b3f
commit c73bef16ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
61 changed files with 112 additions and 263 deletions

View file

@ -1,5 +1,5 @@
{ pkgs, lib, ... }@args:
with lib; with import ../helpers.nix { lib = lib; };
with lib; with import ../helpers.nix { inherit lib; };
mkPlugin args {
name = "ledger";
description = "Enable ledger language features";

View file

@ -1,6 +1,6 @@
{ lib, pkgs, ... }@attrs:
let
helpers = import ../helpers.nix { lib = lib; };
helpers = import ../helpers.nix { inherit lib; };
in with helpers; with lib;
mkPlugin attrs {
name = "nix";

View file

@ -3,15 +3,14 @@
, config
, ...
}:
with lib; {
with lib;
let
helpers = import ../helpers.nix { inherit lib; };
in {
options.plugins.plantuml-syntax = {
enable = mkEnableOption "plantuml syntax support";
package = mkOption {
type = types.package;
default = pkgs.vimPlugins.plantuml-syntax;
description = "Plugin to use for plantuml-syntax";
};
package = helpers.mkPackageOption "plantuml-syntax" pkgs.vimPlugins.plantuml-syntax;
setMakeprg = mkOption {
type = types.bool;

View file

@ -1,10 +1,12 @@
{ pkgs
, config
, lib
, helpers
, ...
}:
with lib; {
with lib;
let
helpers = import ../helpers.nix { inherit lib; };
in {
options.plugins.rust-tools =
let
mkNullableOptionWithDefault =
@ -46,11 +48,7 @@ with lib; {
in
{
enable = mkEnableOption "rust tools plugins";
package = mkOption {
type = types.package;
default = pkgs.vimPlugins.rust-tools-nvim;
description = "Package to use for rust-tools";
};
package = helpers.mkPackageOption "rust-tools" pkgs.vimPlugins.rust-tools-nvim;
serverPackage = mkOption {
type = types.package;
default = pkgs.rust-analyzer;

View file

@ -3,15 +3,14 @@
, config
, ...
}:
with lib; {
with lib;
let
helpers = import ../helpers.nix { inherit lib; };
in {
options.plugins.treesitter-context = {
enable = mkEnableOption "nvim-treesitter-context";
package = mkOption {
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter-context;
description = "Plugin to use for nvim-treesitter-context";
};
package = helpers.mkPackageOption "treesitter-context" pkgs.vimPlugins.nvim-treesitter-context;
maxLines = mkOption {
type = types.nullOr types.ints.positive;

View file

@ -3,7 +3,11 @@
, lib
, ...
}:
with lib; {
with lib;
let
helpers = import ../helpers.nix { inherit lib; };
in
{
options.plugins.treesitter-refactor =
let
disable = mkOption {
@ -17,11 +21,7 @@ with lib; {
mkEnableOption
"treesitter-refactor (requires plugins.treesitter.enable to be true)";
package = mkOption {
type = types.package;
default = pkgs.vimPlugins.nvim-treesitter-refactor;
description = "Plugin to use for treesitter-refactor";
};
package = helpers.mkPackageOption "treesitter-refactor" pkgs.vimPlugins.nvim-treesitter-refactor;
highlightDefinitions = {
inherit disable;

View file

@ -1,6 +1,6 @@
{ lib, pkgs, ... }@attrs:
let
helpers = import ../helpers.nix { lib = lib; };
helpers = import ../helpers.nix { inherit lib; };
in with helpers; with lib;
mkPlugin attrs {
name = "zig";