summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/mcabber
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2014-11-21 22:29:19 +0300
committerMichael Raskin <7c6f434c@mail.ru>2014-11-21 23:39:35 +0300
commit40274943347d8d5223935ed358712d87119c9f46 (patch)
tree63540eeb67cff867e90fee383593f25dcbad2231 /pkgs/applications/networking/instant-messengers/mcabber
parentd123f1faf0f29eee2cd7bdc841277e4643ab3fcd (diff)
downloadnixpkgs-40274943347d8d5223935ed358712d87119c9f46.tar
nixpkgs-40274943347d8d5223935ed358712d87119c9f46.tar.gz
nixpkgs-40274943347d8d5223935ed358712d87119c9f46.tar.bz2
nixpkgs-40274943347d8d5223935ed358712d87119c9f46.tar.lz
nixpkgs-40274943347d8d5223935ed358712d87119c9f46.tar.xz
nixpkgs-40274943347d8d5223935ed358712d87119c9f46.tar.zst
nixpkgs-40274943347d8d5223935ed358712d87119c9f46.zip
We had hash for wrong mcabber version and the tarball was cached
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/mcabber')
-rw-r--r--pkgs/applications/networking/instant-messengers/mcabber/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/instant-messengers/mcabber/default.nix b/pkgs/applications/networking/instant-messengers/mcabber/default.nix
index 362bf0de977..4fda2d9cc06 100644
--- a/pkgs/applications/networking/instant-messengers/mcabber/default.nix
+++ b/pkgs/applications/networking/instant-messengers/mcabber/default.nix
@@ -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/;