Skip to content

Commit

Permalink
Merge pull request #24459 from ndowens/sylpheed
Browse files Browse the repository at this point in the history
sylpheed: 3.5.0 -> 3.5.1
  • Loading branch information
joachifm committed Mar 30, 2017
2 parents 346fdd6 + da16238 commit e7fdb09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/applications/networking/mailreaders/sylpheed/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{ stdenv, fetchurl, pkgconfig, gtk2

, openssl ? null
, gpgme ? null
, sslSupport ? true
Expand All @@ -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;

Expand Down

0 comments on commit e7fdb09

Please sign in to comment.