summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2018-04-04 13:34:20 +0000
committerGitHub <noreply@github.com>2018-04-04 13:34:20 +0000
commited1312f782312f3459a6ffa68845c9f65c882c65 (patch)
tree274bfa55505ae1fc94e0a991e7d95f60f23690be /pkgs/applications/networking
parent31fe962bb1c35a62a1eaf57ee87bce6045d91753 (diff)
parentfe21790989824ae60e625e5116d00543f808cbc1 (diff)
downloadnixpkgs-ed1312f782312f3459a6ffa68845c9f65c882c65.tar
nixpkgs-ed1312f782312f3459a6ffa68845c9f65c882c65.tar.gz
nixpkgs-ed1312f782312f3459a6ffa68845c9f65c882c65.tar.bz2
nixpkgs-ed1312f782312f3459a6ffa68845c9f65c882c65.tar.lz
nixpkgs-ed1312f782312f3459a6ffa68845c9f65c882c65.tar.xz
nixpkgs-ed1312f782312f3459a6ffa68845c9f65c882c65.tar.zst
nixpkgs-ed1312f782312f3459a6ffa68845c9f65c882c65.zip
Merge pull request #38428 from Ekleog/doc-weechat
Add documentation for weechat
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/irc/weechat/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/applications/networking/irc/weechat/default.nix b/pkgs/applications/networking/irc/weechat/default.nix
index cfed44c997a..b2ea28f0cf8 100644
--- a/pkgs/applications/networking/irc/weechat/default.nix
+++ b/pkgs/applications/networking/irc/weechat/default.nix
@@ -72,6 +72,11 @@ let
       meta = {
         homepage = http://www.weechat.org/;
         description = "A fast, light and extensible chat client";
+        longDescription = ''
+          You can find more documentation as to how to customize this package
+          (eg. adding python modules for scripts that would require them, etc.)
+          on https://nixos.org/nixpkgs/manual/#sec-weechat .
+        '';
         license = stdenv.lib.licenses.gpl3;
         maintainers = with stdenv.lib.maintainers; [ lovek323 garbas the-kenny lheckemann ];
         platforms = stdenv.lib.platforms.unix;
@@ -117,4 +122,7 @@ in if configure == null then weechat else
     export WEECHAT_EXTRA_LIBDIR=${pluginsDir}
     ${lib.concatMapStringsSep "\n" (p: lib.optionalString (p ? extraEnv) p.extraEnv) plugins}
     exec ${weechat}/bin/weechat "$@"
-  '') // { unwrapped = weechat; }
+  '') // {
+    unwrapped = weechat;
+    meta = weechat.meta;
+  }