Skip to content

Commit

Permalink
sylpheed: 3.5.1 -> 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukateras committed Jan 11, 2018
1 parent 65774cb commit 8d12c26
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions 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;
};
}

0 comments on commit 8d12c26

Please sign in to comment.