2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, fetchurl, openssl, ncurses, pkg-config, glib, loudmouth, libotr
|
2015-01-04 16:55:41 +00:00
|
|
|
, 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";
|
2020-11-03 03:25:31 +00:00
|
|
|
version = "1.1.2";
|
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";
|
2020-11-03 03:25:31 +00:00
|
|
|
sha256 = "0q1i5acyghsmzas88qswvki8kkk2nfpr8zapgnxbcd3lwcxl38f4";
|
2009-01-04 17:11:38 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://mcabber.com/";
|
2014-08-30 23:41:40 +01:00
|
|
|
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
|
|
|
}
|