2012-11-23 19:31:51 +00:00
|
|
|
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth}:
|
2009-01-04 17:11:38 +00:00
|
|
|
|
2014-08-30 23:41:40 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mcabber-${version}";
|
|
|
|
version = "0.10.3";
|
2009-01-04 17:11:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-08-30 23:41:40 +01:00
|
|
|
url = "http://mcabber.com/files/mcabber-${version}.tar.bz2";
|
2012-11-23 19:31:51 +00:00
|
|
|
sha256 = "1248cgci1v2ypb90wfhyipwdyp1wskn3gzh78af5ai1a4w5rrjq0";
|
2009-01-04 17:11:38 +00:00
|
|
|
};
|
|
|
|
|
2012-11-23 19:31:51 +00:00
|
|
|
buildInputs = [openssl ncurses pkgconfig glib loudmouth];
|
2009-01-04 17:11:38 +00:00
|
|
|
|
|
|
|
configureFlags = "--with-openssl=${openssl}";
|
2014-08-30 23:41:40 +01:00
|
|
|
|
2014-08-31 01:09:21 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-30 23:41:40 +01:00
|
|
|
homepage = http://mcabber.com/;
|
|
|
|
description = "Small Jabber console client";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
2009-01-04 17:11:38 +00:00
|
|
|
}
|