2018-03-14 19:15:06 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintl }:
|
2007-08-05 18:22:12 +00:00
|
|
|
|
2009-04-23 10:11:02 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-02-15 20:05:31 +00:00
|
|
|
version = "1.1.1";
|
2016-04-02 21:26:10 +00:00
|
|
|
name = "irssi-${version}";
|
2015-05-24 22:12:16 +00:00
|
|
|
|
2007-08-05 18:22:12 +00:00
|
|
|
src = fetchurl {
|
2017-01-09 05:29:40 +00:00
|
|
|
url = "https://github.com/irssi/irssi/releases/download/${version}/${name}.tar.gz";
|
2018-02-15 20:05:31 +00:00
|
|
|
sha256 = "09a9p1yfg0m3w7n2a4axvn8874002ly8x0b543sxihzqk29radpa";
|
2007-08-05 18:22:12 +00:00
|
|
|
};
|
2015-05-24 22:12:16 +00:00
|
|
|
|
2017-01-09 05:29:40 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-03-14 19:15:06 +00:00
|
|
|
buildInputs = [ ncurses glib openssl perl libintl ];
|
2015-05-24 22:12:16 +00:00
|
|
|
|
2017-01-09 05:29:40 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-proxy"
|
|
|
|
"--with-bot"
|
|
|
|
"--with-perl=yes"
|
|
|
|
"--enable-true-color"
|
|
|
|
];
|
2008-01-30 19:49:42 +00:00
|
|
|
|
|
|
|
meta = {
|
2018-05-01 03:03:23 +00:00
|
|
|
homepage = https://irssi.org;
|
2016-04-15 18:20:14 +00:00
|
|
|
description = "A terminal based IRC client";
|
2013-06-19 23:25:54 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
2018-08-06 11:06:06 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2008-01-30 19:49:42 +00:00
|
|
|
};
|
2007-08-05 18:22:12 +00:00
|
|
|
}
|