From fde36b25946e046bcd23c948f3ce393d3da4759f Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Tue, 28 Apr 2026 21:39:10 -0400 Subject: [PATCH] vimPlugins.beancount: add license Ref: https://github.com/nathangrigg/vim-beancount/blob/589a4f06f3b2fd7cd2356c2ef1dafadf6b7a97cf/doc/beancount.txt#L5 --- pkgs/applications/editors/vim/plugins/overrides.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 86ec47af4715..b4ed98d3fa59 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -4733,9 +4733,12 @@ assertNoAdditions { }; }); - vim-beancount = super.vim-beancount.overrideAttrs { + vim-beancount = super.vim-beancount.overrideAttrs (old: { passthru.python3Dependencies = ps: with ps; [ beancount ]; - }; + meta = old.meta // { + license = lib.licenses.vim; + }; + }); vim-bepoptimist = super.vim-bepoptimist.overrideAttrs (old: { meta = old.meta // {