ff161dcd69
see issue #43716
30 lines
794 B
Nix
30 lines
794 B
Nix
{ stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.1.1";
|
|
name = "irssi-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/irssi/irssi/releases/download/${version}/${name}.tar.gz";
|
|
sha256 = "09a9p1yfg0m3w7n2a4axvn8874002ly8x0b543sxihzqk29radpa";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ ncurses glib openssl perl libintl ];
|
|
|
|
configureFlags = [
|
|
"--with-proxy"
|
|
"--with-bot"
|
|
"--with-perl=yes"
|
|
"--enable-true-color"
|
|
];
|
|
|
|
meta = {
|
|
homepage = https://irssi.org;
|
|
description = "A terminal based IRC client";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|