* Toss out the old (GTK-1) Sylpheed.

svn path=/nixpkgs/trunk/; revision=4091
This commit is contained in:
Eelco Dolstra 2005-10-14 12:27:07 +00:00
parent 71739165a8
commit 86ca57f4bb
2 changed files with 0 additions and 38 deletions

View File

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

View File

@ -1,24 +0,0 @@
{ sslSupport ? true
, imageSupport ? true
, stdenv, fetchurl, gtk, openssl ? null, gdkpixbuf ? null
}:
assert gtk != null;
assert sslSupport -> openssl != null;
assert imageSupport -> gdkpixbuf != null;
stdenv.mkDerivation {
name = "sylpheed-1.0.4";
builder = ./builder.sh;
src = fetchurl {
url = http://sylpheed.good-day.net/sylpheed/v1.0/sylpheed-1.0.4.tar.bz2;
md5 = "e47b275c281335d09201503af2115eaa";
};
inherit sslSupport imageSupport;
inherit gtk;
openssl = if sslSupport then openssl else null;
gdkpixbuf = if imageSupport then gdkpixbuf else null;
}