5f8b8ae1d1
Caldwell <graemercaldwell@gmail.com>.) svn path=/nixpkgs/trunk/; revision=22965
19 lines
453 B
Nix
19 lines
453 B
Nix
{stdenv, fetchurl, ncurses, openssl, perl, python, aspell}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "weechat-0.3.2";
|
|
|
|
src = fetchurl {
|
|
url = http://weechat.org/files/src/weechat-0.3.2.tar.gz;
|
|
sha256 = "0ds548fmiv2fg69amhyg1v1rgyw51rqlp64p3rmsbm1lkcwwmivc";
|
|
};
|
|
|
|
buildInputs = [ncurses perl python openssl aspell];
|
|
|
|
meta = {
|
|
homepage = http://http://www.weechat.org/;
|
|
description = "A fast, light and extensible chat client";
|
|
};
|
|
}
|
|
|