2015-01-04 16:55:41 +00:00
|
|
|
{ stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth, libotr
|
|
|
|
, gpgme
|
|
|
|
}:
|
2009-01-04 17:11:38 +00:00
|
|
|
|
2014-08-30 23:41:40 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mcabber";
|
2017-07-01 09:02:32 +01:00
|
|
|
version = "1.1.0";
|
2009-01-04 17:11:38 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://mcabber.com/files/mcabber-${version}.tar.bz2";
|
2017-07-01 09:02:32 +01:00
|
|
|
sha256 = "1ggh865p1rf10ffsnf4g6qv9i8bls36dxdb1nzs5r9vdqci2rz04";
|
2009-01-04 17:11:38 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ openssl ncurses glib loudmouth libotr gpgme ];
|
2009-01-04 17:11:38 +00:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--with-openssl=${openssl.dev}"
|
|
|
|
"--enable-modules"
|
|
|
|
"--enable-otr"
|
|
|
|
];
|
2015-06-10 08:19:16 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
2016-11-30 13:23:42 +00: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 ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2016-10-04 12:13:45 +01:00
|
|
|
updateWalker = true;
|
2017-11-11 12:31:04 +00:00
|
|
|
downloadPage = "http://mcabber.com/files/";
|
2016-10-04 12:13:45 +01:00
|
|
|
downloadURLRegexp = "mcabber-[0-9.]+[.]tar[.][a-z0-9]+$";
|
2014-08-30 23:41:40 +01:00
|
|
|
};
|
2009-01-04 17:11:38 +00:00
|
|
|
}
|