blob: e03a78b1945bf6bfcb7c7a3704c59ac1357cf2e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
final: prev: let
inherit (final) lib;
/*
* Mark broken packages here.
*/
markBrokenPackages = self: super:
lib.mapAttrs (attrName: broken:
super.${attrName}.overrideAttrs (old: {
meta = old.meta // {inherit broken;};
}))
{
# <name> = true;
};
/*
* Add licenses if missing or incorrect in generated ./pkgs/vim-plugins.nix.
*/
fixLicenses = self: super:
lib.mapAttrs (attrName: license:
super.${attrName}.overrideAttrs (old: {
meta = old.meta // {inherit license;};
})) (with lib.licenses; {
/*
* Example:
* plugin-name = [<licenses>]
*/
});
in {
vimExtraPlugins = prev.vimExtraPlugins.extend (lib.composeManyExtensions [
markBrokenPackages
fixLicenses
]);
}
|