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}";
2016-03-02 21:36:37 +00:00
version = "1.0.2";
src = fetchurl {
url = "http://mcabber.com/files/mcabber-${version}.tar.bz2";
2016-03-02 21:36:37 +00:00
sha256 = "1phzfsl6cfzaga140dm8bb8q678j0qsw29cc03rw4vkcxa8kh577";
};
buildInputs = [ openssl ncurses pkgconfig glib loudmouth libotr gpgme ];
configureFlags = "--with-openssl=${openssl} --enable-modules --enable-otr";
2015-06-10 08:19:16 +01:00
doCheck = true;
2014-08-31 01:09:21 +01:00
meta = with stdenv.lib; {
homepage = http://mcabber.com/;
description = "Small Jabber console client";
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
};
}