* Sylpheed updated to 1.0.0. Also fixed OpenSSL support.

svn path=/nixpkgs/trunk/; revision=1986
gstqt5
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"
. $stdenv/setup
if test $sslSupport; then
configureFlags="--enable-ssl $extraflags"
if test "$sslSupport" = 1; then
configureFlags="--enable-ssl $configureFlags"
fi
if test $imageSupport; then
configureFlags="--enable-gdk-pixbuf $extraflags"
if test "$imageSupport" = 1; then
configureFlags="--enable-gdk-pixbuf $configureFlags"
else
configureFlags="--disable-gdk-pixbuf --disable-imlibtest $extraflags"
configureFlags="--disable-gdk-pixbuf --disable-imlibtest $configureFlags"
fi
genericBuild

View File

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