mcabber: update from 0.10.1 to 0.10.3, add meta-information and adopt it
This commit is contained in:
@@ -1,19 +1,22 @@
|
|||||||
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth}:
|
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
|
name = "mcabber-${version}";
|
||||||
name = "mcabber-0.10.1";
|
version = "0.10.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://mcabber.com/files/mcabber-0.10.1.tar.bz2";
|
url = "http://mcabber.com/files/mcabber-${version}.tar.bz2";
|
||||||
sha256 = "1248cgci1v2ypb90wfhyipwdyp1wskn3gzh78af5ai1a4w5rrjq0";
|
sha256 = "1248cgci1v2ypb90wfhyipwdyp1wskn3gzh78af5ai1a4w5rrjq0";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = { homepage = "http://mcabber.com/";
|
|
||||||
description = "Small Jabber console client";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [openssl ncurses pkgconfig glib loudmouth];
|
buildInputs = [openssl ncurses pkgconfig glib loudmouth];
|
||||||
|
|
||||||
configureFlags = "--with-openssl=${openssl}";
|
configureFlags = "--with-openssl=${openssl}";
|
||||||
|
|
||||||
|
meta = with stdevn.lib; {
|
||||||
|
homepage = http://mcabber.com/;
|
||||||
|
description = "Small Jabber console client";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user