We had hash for wrong mcabber version and the tarball was cached

This commit is contained in:
Michael Raskin 2014-11-21 22:29:19 +03:00
parent d123f1faf0
commit 4027494334
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth}:
{stdenv, fetchurl, openssl, ncurses, pkgconfig, glib, loudmouth, libotr}:
stdenv.mkDerivation rec {
name = "mcabber-${version}";
@ -6,12 +6,12 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://mcabber.com/files/mcabber-${version}.tar.bz2";
sha256 = "1248cgci1v2ypb90wfhyipwdyp1wskn3gzh78af5ai1a4w5rrjq0";
sha256 = "0vgsqw6yn0lzzcnr4fql4ycgf3gwqj6w4p0l4nqnvhkc94w62ikp";
};
buildInputs = [openssl ncurses pkgconfig glib loudmouth];
buildInputs = [openssl ncurses pkgconfig glib loudmouth libotr];
configureFlags = "--with-openssl=${openssl}";
configureFlags = "--with-openssl=${openssl} --enable-modules --enable-otr";
meta = with stdenv.lib; {
homepage = http://mcabber.com/;