We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc1d747 commit 973cc06Copy full SHA for 973cc06
1 file changed
flake.nix
@@ -51,14 +51,10 @@
51
};
52
packages = forAllSys (system: let
53
pkgs = getpkgswithoverlay system;
54
- in (with builtins; pkgs.lib.pipe l_pkg_enum [
55
- attrNames
56
- (map (n: {
57
- name = "${n}-${APPNAME}";
58
- value = pkgs.lib.attrByPath [ n "pkgs" APPNAME ] null pkgs;
59
- }))
60
- listToAttrs
61
- ]) // {
+ in (with builtins; listToAttrs (map (n: {
+ name = "${n}-${APPNAME}";
+ value = pkgs.lib.attrByPath [ n "pkgs" APPNAME ] null pkgs;
+ }) (attrNames l_pkg_enum))) // {
62
default = pkgs.vimPlugins.${APPNAME};
63
"vimPlugins-${APPNAME}" = pkgs.vimPlugins.${APPNAME};
64
});
0 commit comments