about summary refs log tree commit diff
path: root/pkgs/applications/networking/irc
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2014-03-07 19:42:29 +0100
committerDomen Kozar <domen@dev.si>2014-03-07 21:52:36 +0100
commit69a3372f3f0e2f869c06a1005c9d4bd5e0337283 (patch)
treeb10c9cc7ac478b729c3e143a686fe1628ebaeb8a /pkgs/applications/networking/irc
parentab75d0fd77600aed5b0189cb94e81ff91d555e51 (diff)
downloadnixlib-69a3372f3f0e2f869c06a1005c9d4bd5e0337283.tar
nixlib-69a3372f3f0e2f869c06a1005c9d4bd5e0337283.tar.gz
nixlib-69a3372f3f0e2f869c06a1005c9d4bd5e0337283.tar.bz2
nixlib-69a3372f3f0e2f869c06a1005c9d4bd5e0337283.tar.lz
nixlib-69a3372f3f0e2f869c06a1005c9d4bd5e0337283.tar.xz
nixlib-69a3372f3f0e2f869c06a1005c9d4bd5e0337283.tar.zst
nixlib-69a3372f3f0e2f869c06a1005c9d4bd5e0337283.zip
Added hexchat
Diffstat (limited to 'pkgs/applications/networking/irc')
-rw-r--r--pkgs/applications/networking/irc/hexchat/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/networking/irc/hexchat/default.nix b/pkgs/applications/networking/irc/hexchat/default.nix
new file mode 100644
index 000000000000..f1cc7df19046
--- /dev/null
+++ b/pkgs/applications/networking/irc/hexchat/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, pkgconfig, gtk, perl, python, gettext
+, libtool, pciutils, dbus_glib, libcanberra, libproxy
+, libsexy, enchant, libnotify, openssl
+, desktop_file_utils, hicolor_icon_theme
+}:
+
+stdenv.mkDerivation rec {
+  version = "2.9.6.1";
+  name = "hexchat-${version}";
+
+  src = fetchurl {
+    url = "http://dl.hexchat.net/hexchat/${name}.tar.xz";
+    sha256 = "0w34jr1pqril6r011fwxv40m17bnb88q9cv5hf08mv0a9lygyrv2";
+  };
+
+  buildInputs = [
+    pkgconfig gtk perl python gettext
+    libtool pciutils dbus_glib libcanberra libproxy
+    libsexy libnotify openssl
+    desktop_file_utils hicolor_icon_theme
+  ];
+
+  configureFlags = [ "--enable-shm" "--enable-textfe" ];
+
+  meta = {
+    description = "A popular and easy to use graphical IRC (chat) client";
+    homepage = http://hexchat.github.io/;
+    license = stdenv.lib.licenses.gpl2;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.romildo ];
+  };
+}