summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/mailreaders/sylpheed/default.nix
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@gmail.com>2018-01-11 14:04:44 +0000
committerYegor Timoshenko <yegortimoshenko@gmail.com>2018-01-11 14:04:44 +0000
commit8d12c26e3488309a01f653896a4a07292a17f0f2 (patch)
tree8eb908b7797357f87412b9979f0f4ffe5f66765d /pkgs/applications/networking/mailreaders/sylpheed/default.nix
parent65774cb22e0b40a3ac7bc97adde3767f1d7df20b (diff)
sylpheed: 3.5.1 -> 3.6.0
Diffstat (limited to 'pkgs/applications/networking/mailreaders/sylpheed/default.nix')
-rw-r--r--pkgs/applications/networking/mailreaders/sylpheed/default.nix40
1 files changed, 19 insertions, 21 deletions
diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
index a63bedfb29d2..d58680d15d5a 100644
--- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix
+++ b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
@@ -1,38 +1,36 @@
-{ stdenv, fetchurl, pkgconfig, gtk2
-, openssl ? null
-, gpgme ? null
-, sslSupport ? true
-, gpgSupport ? true
-}:
+{ stdenv, fetchurl, pkgconfig, gtk2, openssl ? null, gpgme ? null
+, gpgSupport ? true, sslSupport ? true }:
-with stdenv.lib;
-
-assert sslSupport -> openssl != null;
assert gpgSupport -> gpgme != null;
+assert sslSupport -> openssl != null;
+
+with stdenv.lib;
stdenv.mkDerivation rec {
name = "sylpheed-${version}";
- version = "3.5.1";
+ version = "3.6.0";
src = fetchurl {
- url = "http://sylpheed.sraoss.jp/sylpheed/v3.5/${name}.tar.bz2";
- sha256 = "11qhbfyvi5hxv1f448zgbzgrdjj3a4mxj2bfpk6k4bqf7ahh8nis";
+ url = "http://sylpheed.sraoss.jp/sylpheed/v3.6/${name}.tar.bz2";
+ sha256 = "0idk9nz3d200l2bxc38vnxlx0wcslrvncy9lk50vz7dl8c5sg97b";
};
nativeBuildInputs = [ pkgconfig ];
- buildInputs =
- [ gtk2 ]
- ++ optional sslSupport openssl
- ++ optional gpgSupport gpgme;
- configureFlags = optional sslSupport "--enable-ssl"
- ++ optional gpgSupport "--enable-gpgme";
+ buildInputs = [ gtk2 ]
+ ++ optionals gpgSupport [ gpgme ]
+ ++ optionals sslSupport [ openssl ];
+
+ configureFlags = [
+ (optional gpgSupport "--enable-gpgme")
+ (optional sslSupport "--enable-ssl")
+ ];
meta = {
homepage = http://sylpheed.sraoss.jp/en/;
- description = "A lightweight and user-friendly e-mail client";
- maintainers = [ maintainers.eelco ];
+ description = "Lightweight and user-friendly e-mail client";
+ maintainers = with maintainers; [ eelco ];
platforms = platforms.linux ++ platforms.darwin;
- license = "GPL";
+ license = licenses.gpl2;
};
}