From b3720aa01ea1fbdeb06eb4fa6e7a8a77ff902b6c Mon Sep 17 00:00:00 2001 From: Tomas Rivera Date: Tue, 19 May 2026 16:43:46 +0200 Subject: [PATCH] vimPlugins.vim-printer: override license to mit (cherry picked from commit 7da58fee8a7e987ada065b5ac2e9ae254fb7d2bd) --- pkgs/applications/editors/vim/plugins/overrides.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index a75f795e1266..8fe86511bd43 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -5549,6 +5549,12 @@ assertNoAdditions { }; }); + vim-printer = super.vim-printer.overrideAttrs (old: { + meta = old.meta // { + license = lib.licenses.mit; + }; + }); + vim-projectionist = super.vim-projectionist.overrideAttrs (old: { meta = old.meta // { license = lib.licenses.vim;