Added hexchat
This commit is contained in:
parent
ab75d0fd77
commit
69a3372f3f
32
pkgs/applications/networking/irc/hexchat/default.nix
Normal file
32
pkgs/applications/networking/irc/hexchat/default.nix
Normal file
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -8204,6 +8204,8 @@ let
|
|||||||
|
|
||||||
herbstluftwm = callPackage ../applications/window-managers/herbstluftwm { };
|
herbstluftwm = callPackage ../applications/window-managers/herbstluftwm { };
|
||||||
|
|
||||||
|
hexchat = callPackage ../applications/networking/irc/hexchat { };
|
||||||
|
|
||||||
hexedit = callPackage ../applications/editors/hexedit { };
|
hexedit = callPackage ../applications/editors/hexedit { };
|
||||||
|
|
||||||
hipchat = callPackage_i686 ../applications/networking/instant-messengers/hipchat { };
|
hipchat = callPackage_i686 ../applications/networking/instant-messengers/hipchat { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user