summary refs log tree commit diff
path: root/pkgs/applications/networking/irc/hexchat/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/irc/hexchat/default.nix')
-rw-r--r--pkgs/applications/networking/irc/hexchat/default.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/pkgs/applications/networking/irc/hexchat/default.nix b/pkgs/applications/networking/irc/hexchat/default.nix
index 65d365b5981..da47ec6580b 100644
--- a/pkgs/applications/networking/irc/hexchat/default.nix
+++ b/pkgs/applications/networking/irc/hexchat/default.nix
@@ -1,25 +1,29 @@
-{ stdenv, fetchurl, pkgconfig, gtk, perl, python, gettext
+{ stdenv, fetchurl, pkgconfig, gtk, lua, perl, python
 , libtool, pciutils, dbus_glib, libcanberra, libproxy
 , libsexy, enchant, libnotify, openssl, intltool
 , desktop_file_utils, hicolor_icon_theme
 }:
 
 stdenv.mkDerivation rec {
-  version = "2.10.2";
+  version = "2.12.1";
   name = "hexchat-${version}";
 
   src = fetchurl {
     url = "http://dl.hexchat.net/hexchat/${name}.tar.xz";
-    sha256 = "0b5mw6jxa7c93nbgiwijm7j7klm6nccx6l9zyainyrbnqmjz7sw7";
+    sha256 = "0svwz9ldrry1sn35jywgpacjj1cf3xl3k74ynwn8rjvxs73b00aj";
   };
 
+  nativeBuildInputs = [
+    pkgconfig libtool intltool
+  ];
+
   buildInputs = [
-    pkgconfig gtk perl python gettext
-    libtool pciutils dbus_glib libcanberra libproxy
-    libsexy libnotify openssl intltool
-    desktop_file_utils hicolor_icon_theme
+    gtk lua perl python pciutils dbus_glib libcanberra libproxy
+    libsexy libnotify openssl desktop_file_utils hicolor_icon_theme
   ];
 
+  enableParallelBuilding = true;
+
  #hexchat and heachat-text loads enchant spell checking library at run time and so it needs to have route to the path
   patchPhase = ''
     sed -i "s,libenchant.so.1,${enchant}/lib/libenchant.so.1,g" src/fe-gtk/sexy-spell-entry.c