27 lines
767 B
Nix
27 lines
767 B
Nix
{ stdenv, fetchurl, ncurses, openssl, perl, python, aspell, gnutls
|
|
, zlib, curl , pkgconfig, libgcrypt, ruby, lua5, tcl, guile }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.3.9";
|
|
name = "weechat-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://weechat.org/files/src/${name}.tar.gz";
|
|
sha256 = "8666c788cbb212036197365df3ba3cf964a23e4f644d76ea51d66dbe3be593bb";
|
|
};
|
|
|
|
buildInputs =
|
|
[ ncurses perl python openssl aspell gnutls zlib curl pkgconfig
|
|
libgcrypt ruby lua5 tcl guile
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://http://www.weechat.org/;
|
|
description = "A fast, light and extensible chat client";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = [ stdenv.lib.maintainers.garbas ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|
|
|