mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 01:27:39 +00:00
* Sylpheed updated to 1.0.0. Also fixed OpenSSL support.
svn path=/nixpkgs/trunk/; revision=1986
This commit is contained in:
parent
9e5869f731
commit
50d826abea
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user