* Sylpheed updated to 1.0.0. Also fixed OpenSSL support.

svn path=/nixpkgs/trunk/; revision=1986
This commit is contained in:
Eelco Dolstra 2005-01-03 20:22:48 +00:00
parent 9e5869f731
commit 50d826abea
2 changed files with 8 additions and 8 deletions

View File

@ -1,14 +1,14 @@
buildInputs="$gtk $gdkpixbuf $openssl" buildInputs="$gtk $gdkpixbuf $openssl"
. $stdenv/setup . $stdenv/setup
if test $sslSupport; then if test "$sslSupport" = 1; then
configureFlags="--enable-ssl $extraflags" configureFlags="--enable-ssl $configureFlags"
fi fi
if test $imageSupport; then if test "$imageSupport" = 1; then
configureFlags="--enable-gdk-pixbuf $extraflags" configureFlags="--enable-gdk-pixbuf $configureFlags"
else else
configureFlags="--disable-gdk-pixbuf --disable-imlibtest $extraflags" configureFlags="--disable-gdk-pixbuf --disable-imlibtest $configureFlags"
fi fi
genericBuild genericBuild

View File

@ -8,12 +8,12 @@ assert sslSupport -> openssl != null;
assert imageSupport -> gdkpixbuf != null; assert imageSupport -> gdkpixbuf != null;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "sylpheed-1.0.0-pre-beta3"; name = "sylpheed-1.0.0";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://sylpheed.good-day.net/sylpheed/sylpheed-1.0.0beta3.tar.bz2; url = http://sylpheed.good-day.net/sylpheed/sylpheed-1.0.0.tar.bz2;
md5 = "44d98cc4ed490dfdb92016b7689396cf"; md5 = "864c4fc581a5ab1c7af5e06153c76769";
}; };
inherit sslSupport imageSupport; inherit sslSupport imageSupport;