From b977cd2b8e093526eae957612b0cda2ac55960ce Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Fri, 21 Nov 2014 18:39:39 +0100 Subject: gnu: Add hexchat. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/messaging.scm (hexchat): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/messaging.scm | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 7e2056c347..f6d0cf552e 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Mark H Weaver +;;; Copyright © 2014 Julien Lepiller ;;; ;;; This file is part of GNU Guix. ;;; @@ -23,6 +24,12 @@ #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages) + #:use-module (gnu packages enchant) + #:use-module (gnu packages gnome) + #:use-module (gnu packages gtk) + #:use-module (gnu packages libcanberra) + #:use-module (gnu packages openssl) + #:use-module (gnu packages xml) #:use-module (gnu packages gnupg) #:use-module (gnu packages pkg-config) #:use-module (gnu packages glib) @@ -118,4 +125,38 @@ identi.ca and status.net).") (home-page "http://www.bitlbee.org/") (license (list gpl2+ bsd-2)))) +(define-public hexchat + (package + (name "hexchat") + (version "2.10.1") + (source (origin + (method url-fetch) + (uri (string-append "https://dl.hexchat.net/hexchat/hexchat-" + version ".tar.xz")) + (sha256 + (base32 + "1ag9rmfisv0hsbk05jq4f1rnap7kwg90vgbmkr9zklkh6imfxk7z")))) + (build-system gnu-build-system) + (native-inputs `(("pkg-config" ,pkg-config) + ("intltool" ,intltool))) + (inputs `(("dbus-glib" ,dbus-glib) + ("dbus" ,dbus) + ("enchant" ,enchant) + ("glib:bin" ,glib "bin") ;need glib-genmarshal + ("gtk" ,gtk+-2) + ("libcanberra" ,libcanberra) + ("libnotify" ,libnotify) + ("openssl" ,openssl) + ("perl-xml-parser" ,perl-xml-parser) ;for addons + ("python-2" ,python-2))) ;for addons + (synopsis "Graphical IRC Client") + (description + "HexChat lets you connect to multiple IRC networks at once. The main window +shows the list of currently connected networks and their channels, the current +conversation and the list of users. It uses colors to differentiate between +users and to highlight messages. It checks spelling using available +dictionaries. HexChat can be extended with multiple addons.") + (home-page "http://hexchat.net/") + (license gpl2+))) + ;;; messaging.scm ends here -- cgit v1.2.3