mcabber: update from 0.10.1 to 0.10.3, add meta-information and adopt it

This commit is contained in:
Pascal Wittmann 2014-08-31 00:41:40 +02:00
parent 5c3c7574e2
commit 907845127e

View File

@ -1,19 +1,22 @@
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth}:
stdenv.mkDerivation {
name = "mcabber-0.10.1";
stdenv.mkDerivation rec {
name = "mcabber-${version}";
version = "0.10.3";
src = fetchurl {
url = "http://mcabber.com/files/mcabber-0.10.1.tar.bz2";
url = "http://mcabber.com/files/mcabber-${version}.tar.bz2";
sha256 = "1248cgci1v2ypb90wfhyipwdyp1wskn3gzh78af5ai1a4w5rrjq0";
};
meta = { homepage = "http://mcabber.com/";
description = "Small Jabber console client";
};
buildInputs = [openssl ncurses pkgconfig glib loudmouth];
configureFlags = "--with-openssl=${openssl}";
meta = with stdevn.lib; {
homepage = http://mcabber.com/;
description = "Small Jabber console client";
license = licenses.gpl2;
maintainers = with maintainers; [ pSub ];
};
}