Unverified Commit a6c3b1bb authored by Matthieu Coudron's avatar Matthieu Coudron Committed by GitHub
Browse files

programs.neovim: disable python3 and ruby providers by default (#506332)

parents c5f78a1b 20b7d35e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -310,7 +310,7 @@ gnuradioMinimal.override {

- `mold` is now wrapped by default.

- `neovim` now disables by default the `python3` and `ruby` providers, unused by most users and reducing closure size from 365MiB to 240MiB. Host provider executables are not exposed anymore along with the neovim wrapper. You can still refer to those using the neovim provider variables (e.g., `python3_host_prog`).
- The `neovim` package and module now disable by default the `python3` and `ruby` providers, unused by most users and reducing closure size from 365MiB to 240MiB. Host provider executables are not exposed anymore along with the neovim wrapper. You can still refer to those using the neovim provider variables (e.g., `python3_host_prog`).

### Deprecations {#sec-nixpkgs-release-26.05-lib-deprecations}

+2 −2
Original line number Diff line number Diff line
@@ -51,13 +51,13 @@ in

    withRuby = lib.mkOption {
      type = lib.types.bool;
      default = true;
      default = false;
      description = "Enable Ruby provider.";
    };

    withPython3 = lib.mkOption {
      type = lib.types.bool;
      default = true;
      default = false;
      description = "Enable Python 3 provider.";
    };