[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add hexchat.
From: |
Ludovic Courtès |
Subject: |
01/02: gnu: Add hexchat. |
Date: |
Fri, 21 Nov 2014 21:52:23 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit b977cd2b8e093526eae957612b0cda2ac55960ce
Author: Julien Lepiller <address@hidden>
Date: Fri Nov 21 18:39:39 2014 +0100
gnu: Add hexchat.
* gnu/packages/messaging.scm (hexchat): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/messaging.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 7e2056c..f6d0cf5 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 <address@hidden>
+;;; Copyright © 2014 Julien Lepiller <address@hidden>
;;;
;;; 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