nixpkgs/pkgs/applications/networking/instant-messengers/mcabber/default.nix

27 lines
694 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth, libotr
, gpgme
}:
stdenv.mkDerivation rec {
name = "mcabber-${version}";
2015-07-03 10:18:04 +02:00
version = "1.0.0";
src = fetchurl {
url = "http://mcabber.com/files/mcabber-${version}.tar.bz2";
2015-07-03 10:18:04 +02:00
sha256 = "0ckh2l5fbnykzbvdrqjwd1ppalaifb79nnizh8kra2sy76xbqxjl";
};
buildInputs = [ openssl ncurses pkgconfig glib loudmouth libotr gpgme ];
configureFlags = "--with-openssl=${openssl} --enable-modules --enable-otr";
2015-06-10 09:19:16 +02:00
doCheck = true;
2014-08-31 02:09:21 +02:00
meta = with stdenv.lib; {
homepage = http://mcabber.com/;
description = "Small Jabber console client";
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
};
}