Adding mcabber console jabber client - patch by Lluis Batlle

svn path=/nixpkgs/trunk/; revision=13698
This commit is contained in:
Michael Raskin 2009-01-04 17:11:38 +00:00
parent c1ae54a6b3
commit 45df59809d
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib}:
stdenv.mkDerivation {
name = "mcabber-0.9.9";
src = fetchurl {
url = http://mirror.mcabber.com/files/mcabber-0.9.9.tar.bz2;
sha256 = "2a231c9241211d33745f110f35cfa6bdb051b32791461b9579794b6623863bb1";
};
meta = { homepage = "http://mirror.mcabber.com/";
description = "Small Jabber console client";
};
buildInputs = [openssl ncurses pkgconfig glib];
configureFlags = "--with-openssl=${openssl}";
}

View file

@ -969,6 +969,11 @@ let
inherit (xlibs) libX11;
};
mcabber = import ../applications/networking/instant-messengers/mcabber {
inherit fetchurl stdenv openssl ncurses pkgconfig;
inherit (gtkLibs) glib;
};
mdbtools = builderDefsPackage (selectVersion ../tools/misc/mdbtools "0.6-pre1") {
inherit readline pkgconfig bison;
inherit (gtkLibs) glib;