summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorJoachim F <joachifm@users.noreply.github.com>2017-03-30 14:00:52 +0100
committerGitHub <noreply@github.com>2017-03-30 14:00:52 +0100
commite7fdb09275cc77ae79450b2cde2abaa03308649f (patch)
tree9cf62415cd27193dd5b5a34d62f7088692178536 /pkgs/applications/networking
parent346fdd6e38f4623f289089d94c38f87da5f93bb1 (diff)
parentda16238077e64cc86164e2fd205e3f51c04b1227 (diff)
downloadnixlib-e7fdb09275cc77ae79450b2cde2abaa03308649f.tar
nixlib-e7fdb09275cc77ae79450b2cde2abaa03308649f.tar.gz
nixlib-e7fdb09275cc77ae79450b2cde2abaa03308649f.tar.bz2
nixlib-e7fdb09275cc77ae79450b2cde2abaa03308649f.tar.lz
nixlib-e7fdb09275cc77ae79450b2cde2abaa03308649f.tar.xz
nixlib-e7fdb09275cc77ae79450b2cde2abaa03308649f.tar.zst
nixlib-e7fdb09275cc77ae79450b2cde2abaa03308649f.zip
Merge pull request #24459 from ndowens/sylpheed
sylpheed: 3.5.0 -> 3.5.1
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/sylpheed/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
index b1cdd509f98e..509a2ab01182 100644
--- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix
+++ b/pkgs/applications/networking/mailreaders/sylpheed/default.nix
@@ -1,5 +1,4 @@
 { stdenv, fetchurl, pkgconfig, gtk2
-
 , openssl ? null
 , gpgme ? null
 , sslSupport ? true
@@ -13,15 +12,16 @@ assert gpgSupport -> gpgme != null;
 
 stdenv.mkDerivation rec {
   name = "sylpheed-${version}";
-  version = "3.5.0";
+  version = "3.5.1";
 
   src = fetchurl {
     url = "http://sylpheed.sraoss.jp/sylpheed/v3.5/${name}.tar.bz2";
-    sha256 = "0p50cr9h8b7cv1ayxhqxpj3kv0b7k9dga7lmmfb1lvyagg8n42sa";
+    sha256 = "11qhbfyvi5hxv1f448zgbzgrdjj3a4mxj2bfpk6k4bqf7ahh8nis";
   };
 
+  nativeBuildInputs = [ pkgconfig ];
   buildInputs =
-    [ pkgconfig gtk2 ]
+    [ gtk2 ]
     ++ optional sslSupport openssl
     ++ optional gpgSupport gpgme;