about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2016-04-29 04:36:42 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2016-04-29 04:38:54 +0200
commit75b01594c81508380881fb7bdfe2d349effdd7c0 (patch)
treed2a23b20d9d103306eb310044475d84a02028d97 /pkgs/applications
parent730d488a124e7011ccb63f7847fe373a8eefac51 (diff)
downloadnixlib-75b01594c81508380881fb7bdfe2d349effdd7c0.tar
nixlib-75b01594c81508380881fb7bdfe2d349effdd7c0.tar.gz
nixlib-75b01594c81508380881fb7bdfe2d349effdd7c0.tar.bz2
nixlib-75b01594c81508380881fb7bdfe2d349effdd7c0.tar.lz
nixlib-75b01594c81508380881fb7bdfe2d349effdd7c0.tar.xz
nixlib-75b01594c81508380881fb7bdfe2d349effdd7c0.tar.zst
nixlib-75b01594c81508380881fb7bdfe2d349effdd7c0.zip
sylpheed: 3.4.1 -> 3.5.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/mailreaders/sylpheed/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
index ac7846836ff7..65c1001ae781 100644
--- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix
+++ b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
@@ -11,14 +11,13 @@ with stdenv.lib;
 assert sslSupport -> openssl != null;
 assert gpgSupport -> gpgme != null;
 
-let version = "3.4.1"; in
-
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
   name = "sylpheed-${version}";
+  version = "3.5.0";
 
   src = fetchurl {
-    url = "http://sylpheed.sraoss.jp/sylpheed/v3.4/sylpheed-${version}.tar.bz2";
-    sha256 = "11wpifvn8a0p4dqmvi7r61imqkgm6rjjp3h057c344vny37livbx";
+    url = "http://sylpheed.sraoss.jp/sylpheed/v3.5/${name}.tar.bz2";
+    sha256 = "0p50cr9h8b7cv1ayxhqxpj3kv0b7k9dga7lmmfb1lvyagg8n42sa";
   };
 
   buildInputs =