1f926aa94f
Fixes: * CVE-2017-10965 * CVE-2017-10966 See https://irssi.org/security/irssi_sa_2017_07.txt.
28 lines
759 B
Nix
28 lines
759 B
Nix
{ stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintlOrEmpty }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.0.4";
|
|
name = "irssi-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/irssi/irssi/releases/download/${version}/${name}.tar.gz";
|
|
sha256 = "1a7f9g3hlccqlf9xj1csbxw4wgl6jfywg2xvkir6ww5viagkbzs8";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ ncurses glib openssl perl libintlOrEmpty ];
|
|
|
|
configureFlags = [
|
|
"--with-proxy"
|
|
"--with-bot"
|
|
"--with-perl=yes"
|
|
"--enable-true-color"
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://irssi.org;
|
|
description = "A terminal based IRC client";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
|
};
|
|
}
|