29 lines
759 B
Nix
29 lines
759 B
Nix
{ stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintlOrEmpty }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.0.3";
|
|
name = "irssi-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/irssi/irssi/releases/download/${version}/${name}.tar.gz";
|
|
sha256 = "08nfm1pcf2b9npnp83175yi2vcwnhjdiwsq8whz7iky33hlhvijk";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|