nixpkgs/pkgs/applications/networking/mailreaders/sylpheed/default.nix
2015-03-29 23:21:04 +00:00

40 lines
908 B
Nix

{ stdenv, fetchurl, pkgconfig, gtk
, openssl ? null
, gpgme ? null
, sslSupport ? true
, gpgSupport ? true
}:
with stdenv.lib;
assert sslSupport -> openssl != null;
assert gpgSupport -> gpgme != null;
let version = "3.4.1"; in
stdenv.mkDerivation {
name = "sylpheed-${version}";
src = fetchurl {
url = "http://sylpheed.sraoss.jp/sylpheed/v3.4/sylpheed-${version}.tar.bz2";
sha256 = "11wpifvn8a0p4dqmvi7r61imqkgm6rjjp3h057c344vny37livbx";
};
buildInputs =
[ pkgconfig gtk ]
++ optional sslSupport openssl
++ optional gpgSupport gpgme;
configureFlags = optional sslSupport "--enable-ssl"
++ optional gpgSupport "--enable-gpgme";
meta = {
homepage = http://sylpheed.sraoss.jp/en/;
description = "A lightweight and user-friendly e-mail client";
maintainers = [ maintainers.eelco ];
platforms = platforms.linux;
license = "GPL";
};
}