sylpheed: Update to 3.2

http://hydra.nixos.org/build/3156892
This commit is contained in:
Eelco Dolstra 2012-10-15 11:27:37 -04:00
parent 873595ee6d
commit 55aa7f0d6f

View file

@ -5,25 +5,31 @@
, gpgme ? null
}:
with stdenv.lib;
assert sslSupport -> openssl != null;
assert gpgSupport -> gpgme != null;
stdenv.mkDerivation {
name = "sylpheed-2.7.1";
name = "sylpheed-3.2";
src = fetchurl {
url = http://sylpheed.sraoss.jp/sylpheed/v2.7/sylpheed-2.7.1.tar.bz2;
sha256 = "08sfz159y8hi3lky98m6p4nkfiima749lza8gf3s3vp2niylbdlb";
url = http://sylpheed.sraoss.jp/sylpheed/v3.2/sylpheed-3.2.0.tar.bz2;
sha256 = "1cdjwn1f8rgcxzfxj7j7qvacmaw4zfhnip81q4n5lj5d6rj7rssa";
};
buildInputs = [
pkgconfig gtk
(if sslSupport then openssl else null)
(if gpgSupport then gpgme else null)
];
buildInputs =
[ pkgconfig gtk ]
++ optional sslSupport openssl
++ optional gpgSupport gpgme;
configureFlags = [
(if sslSupport then "--enable-ssl" else null)
];
configureFlags = optionalString sslSupport "--enable-ssl";
meta = {
homepage = http://sylpheed.sraoss.jp/en/;
description = "A lightweight and user-friendly e-mail client";
maintainers = [ maintainers.eelco ];
platforms = platforms.linux;
license = "GPL";
};
}