3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/irc/hexchat/default.nix

33 lines
962 B
Nix
Raw Normal View History

2014-03-07 18:42:29 +00:00
{ stdenv, fetchurl, pkgconfig, gtk, perl, python, gettext
, libtool, pciutils, dbus_glib, libcanberra, libproxy
2015-06-22 11:28:28 +01:00
, libsexy, enchant, libnotify, openssl, intltool
2014-03-07 18:42:29 +00:00
, desktop_file_utils, hicolor_icon_theme
}:
stdenv.mkDerivation rec {
2015-06-22 11:28:28 +01:00
version = "2.10.2";
2014-03-07 18:42:29 +00:00
name = "hexchat-${version}";
src = fetchurl {
url = "http://dl.hexchat.net/hexchat/${name}.tar.xz";
2015-06-22 11:28:28 +01:00
sha256 = "0b5mw6jxa7c93nbgiwijm7j7klm6nccx6l9zyainyrbnqmjz7sw7";
2014-03-07 18:42:29 +00:00
};
buildInputs = [
pkgconfig gtk perl python gettext
libtool pciutils dbus_glib libcanberra libproxy
2015-06-22 11:28:28 +01:00
libsexy libnotify openssl intltool
2014-03-07 18:42:29 +00:00
desktop_file_utils hicolor_icon_theme
];
configureFlags = [ "--enable-shm" "--enable-textfe" ];
2015-06-22 07:25:07 +01:00
meta = with stdenv.lib; {
2014-03-07 18:42:29 +00:00
description = "A popular and easy to use graphical IRC (chat) client";
homepage = http://hexchat.github.io/;
2015-06-22 07:25:07 +01:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ romildo jgeerds ];
2014-03-07 18:42:29 +00:00
};
}