Skip to content
This repository was archived by the owner on Dec 27, 2025. It is now read-only.

Commit 5c2c597

Browse files
committed
fix(nix): hope this works
1 parent fac69ca commit 5c2c597

1 file changed

Lines changed: 16 additions & 11 deletions

File tree

flake.nix

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,22 @@
4444
};
4545
};
4646

47-
m15aVimPlugins = (prev.m15aVimPlugins or { }) // {
48-
${pname} = final.vimUtils.buildVimPlugin {
49-
inherit pname version;
50-
src = ./.;
51-
meta = with final.lib; {
52-
description = "Yet another Vim syntax highlighting plugin for Fennel";
53-
license = licenses.bsd3;
54-
homepage = "https://github.com/m15a/${pname}";
55-
};
56-
};
57-
};
47+
m15aVimPlugins =
48+
with final.lib;
49+
makeExtensible (
50+
_:
51+
recurseIntoAttrs {
52+
${pname} = final.vimUtils.buildVimPlugin {
53+
inherit pname version;
54+
src = ./.;
55+
meta = {
56+
description = "Yet another Vim syntax highlighting plugin for Fennel";
57+
license = licenses.bsd3;
58+
homepage = "https://github.com/m15a/${pname}";
59+
};
60+
};
61+
}
62+
);
5863

5964
formatter = final.writeShellApplication {
6065
name = "${pname}-formatter";

0 commit comments

Comments
 (0)