kakoune: allow custom package (#3434)
This commit is contained in:
parent
cc58d31953
commit
e999dfe7cb
|
@ -489,9 +489,8 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
kakouneWithPlugins = pkgs.wrapKakoune pkgs.kakoune-unwrapped {
|
||||
configure = { plugins = cfg.plugins; };
|
||||
};
|
||||
kakouneWithPlugins =
|
||||
pkgs.wrapKakoune cfg.package { configure = { plugins = cfg.plugins; }; };
|
||||
|
||||
configFile = let
|
||||
wrapOptions = with cfg.config.wrapLines;
|
||||
|
@ -624,6 +623,8 @@ in {
|
|||
programs.kakoune = {
|
||||
enable = mkEnableOption "the kakoune text editor";
|
||||
|
||||
package = mkPackageOption pkgs "kakoune-unwrapped" { };
|
||||
|
||||
config = mkOption {
|
||||
type = types.nullOr configModule;
|
||||
default = { };
|
||||
|
|
Loading…
Reference in a new issue