BitlBee 3.0.1.

svn path=/nixpkgs/trunk/; revision=25419
This commit is contained in:
Ludovic Courtès 2011-01-05 10:48:21 +00:00
parent 0b747487fd
commit ea13b1e2e3

View file

@ -1,16 +1,19 @@
{ fetchurl, stdenv, gnutls, glib, pkgconfig, check }: { fetchurl, stdenv, gnutls, glib, pkgconfig, check, libotr }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "bitlbee-1.2.8"; name = "bitlbee-3.0.1";
src = fetchurl { src = fetchurl {
url = "mirror://bitlbee/src/${name}.tar.gz"; url = "mirror://bitlbee/src/${name}.tar.gz";
sha256 = "11lfxvra46mwcnlxvhnywv6xbp7zl3h27hsbfwdh16b6fy41n1is"; sha256 = "027n5f0phjr5fcrphbcflqv8hlkv5qnrpc1xgr09qjyv6mxp72j0";
}; };
buildInputs = [ gnutls glib pkgconfig ] buildInputs = [ gnutls glib pkgconfig libotr ]
++ stdenv.lib.optional doCheck check; ++ stdenv.lib.optional doCheck check;
configureFlags = [ "--otr=1" ];
preCheck = "mkdir tests/.depend";
doCheck = true; doCheck = true;
meta = { meta = {