weechat: remove outputsToInstall from meta

This commit is contained in:
Matthew Bauer 2019-01-31 14:23:17 -05:00
parent 8babcc3d44
commit a2b606f8e7

View File

@ -65,7 +65,7 @@ let
${lib.concatMapStringsSep "\n" (p: lib.optionalString (p ? extraEnv) p.extraEnv) plugins} ${lib.concatMapStringsSep "\n" (p: lib.optionalString (p ? extraEnv) p.extraEnv) plugins}
exec ${weechat}/bin/${bin} "$@" --run-command ${lib.escapeShellArg init} exec ${weechat}/bin/${bin} "$@" --run-command ${lib.escapeShellArg init}
'') // { '') // {
inherit (weechat) name meta; inherit (weechat) name;
unwrapped = weechat; unwrapped = weechat;
}; };
in buildEnv { in buildEnv {
@ -74,7 +74,7 @@ let
(mkWeechat "weechat") (mkWeechat "weechat")
(mkWeechat "weechat-headless") (mkWeechat "weechat-headless")
]; ];
meta = weechat.meta; meta = builtins.removeAttrs weechat.meta [ "outputsToInstall" ];
}; };
in lib.makeOverridable wrapper in lib.makeOverridable wrapper