sylpheed: 3.5.0 -> 3.5.1

This commit is contained in:
ndowens 2017-03-29 19:07:54 -05:00
parent adb460b30f
commit da16238077

View File

@ -1,5 +1,4 @@
{ stdenv, fetchurl, pkgconfig, gtk2 { stdenv, fetchurl, pkgconfig, gtk2
, openssl ? null , openssl ? null
, gpgme ? null , gpgme ? null
, sslSupport ? true , sslSupport ? true
@ -13,15 +12,16 @@ assert gpgSupport -> gpgme != null;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "sylpheed-${version}"; name = "sylpheed-${version}";
version = "3.5.0"; version = "3.5.1";
src = fetchurl { src = fetchurl {
url = "http://sylpheed.sraoss.jp/sylpheed/v3.5/${name}.tar.bz2"; url = "http://sylpheed.sraoss.jp/sylpheed/v3.5/${name}.tar.bz2";
sha256 = "0p50cr9h8b7cv1ayxhqxpj3kv0b7k9dga7lmmfb1lvyagg8n42sa"; sha256 = "11qhbfyvi5hxv1f448zgbzgrdjj3a4mxj2bfpk6k4bqf7ahh8nis";
}; };
nativeBuildInputs = [ pkgconfig ];
buildInputs = buildInputs =
[ pkgconfig gtk2 ] [ gtk2 ]
++ optional sslSupport openssl ++ optional sslSupport openssl
++ optional gpgSupport gpgme; ++ optional gpgSupport gpgme;