mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
* Toss out the old (GTK-1) Sylpheed.
svn path=/nixpkgs/trunk/; revision=4091
This commit is contained in:
parent
71739165a8
commit
86ca57f4bb
@ -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
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user