2012-11-23 20:31:51 +01:00
|
|
|
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth}:
|
2009-01-04 18:11:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2012-11-23 20:31:51 +01:00
|
|
|
name = "mcabber-0.10.1";
|
2009-01-04 18:11:38 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-11-23 20:31:51 +01:00
|
|
|
url = "http://mcabber.com/files/mcabber-0.10.1.tar.bz2";
|
|
|
|
sha256 = "1248cgci1v2ypb90wfhyipwdyp1wskn3gzh78af5ai1a4w5rrjq0";
|
2009-01-04 18:11:38 +01:00
|
|
|
};
|
|
|
|
|
2012-11-23 20:31:51 +01:00
|
|
|
meta = { homepage = "http://mcabber.com/";
|
2009-01-04 18:11:38 +01:00
|
|
|
description = "Small Jabber console client";
|
|
|
|
};
|
|
|
|
|
2012-11-23 20:31:51 +01:00
|
|
|
buildInputs = [openssl ncurses pkgconfig glib loudmouth];
|
2009-01-04 18:11:38 +01:00
|
|
|
|
|
|
|
configureFlags = "--with-openssl=${openssl}";
|
|
|
|
}
|