about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorBenjamin Podszun <dar@darklajid.de>2014-05-07 15:30:59 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-05-08 23:35:51 +0200
commit0008a4b6c467977469b9b3bdec15fcc580204145 (patch)
tree21a2b83f75a12805e1b3d6a373f849ac2dc4fed2 /pkgs/applications/networking
parent07a5187063487d734d8bb2777bfa64621e61e0e8 (diff)
downloadnixlib-0008a4b6c467977469b9b3bdec15fcc580204145.tar
nixlib-0008a4b6c467977469b9b3bdec15fcc580204145.tar.gz
nixlib-0008a4b6c467977469b9b3bdec15fcc580204145.tar.bz2
nixlib-0008a4b6c467977469b9b3bdec15fcc580204145.tar.lz
nixlib-0008a4b6c467977469b9b3bdec15fcc580204145.tar.xz
nixlib-0008a4b6c467977469b9b3bdec15fcc580204145.tar.zst
nixlib-0008a4b6c467977469b9b3bdec15fcc580204145.zip
sylpheed: 3.2 (2012) -> 3.4.1 (2014) (close #2558)
vcunat fixed eval and tested it runs.
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/sylpheed/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
index 31e65a857df6..70d01f5df3ea 100644
--- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix
+++ b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
@@ -10,12 +10,14 @@ with stdenv.lib;
 assert sslSupport -> openssl != null;
 assert gpgSupport -> gpgme != null;
 
+let version = "3.4.1"; in
+
 stdenv.mkDerivation {
-  name = "sylpheed-3.2.0";
+  name = "sylpheed-${version}";
 
   src = fetchurl {
-    url = http://sylpheed.sraoss.jp/sylpheed/v3.2/sylpheed-3.2.0.tar.bz2;
-    sha256 = "1cdjwn1f8rgcxzfxj7j7qvacmaw4zfhnip81q4n5lj5d6rj7rssa";
+    url = "http://sylpheed.sraoss.jp/sylpheed/v3.4/sylpheed-${version}.tar.bz2";
+    sha256 = "11wpifvn8a0p4dqmvi7r61imqkgm6rjjp3h057c344vny37livbx";
   };
 
   buildInputs =