about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/sylpheed/default.nix
blob: 8244f7c6324b5ad5eaf075e8a8926f0560fab8c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ sslSupport ? true
, gpgSupport ? false
, stdenv, fetchurl, pkgconfig, gtk, glib
, openssl ? null
, gpgme ? null
}:

assert sslSupport -> openssl != null;
assert gpgSupport -> gpgme != null;

stdenv.mkDerivation {
  name = "sylpheed-2.1.9";

  src = fetchurl {
    url = http://sylpheed.good-day.net/sylpheed/v2.1/sylpheed-2.1.9.tar.bz2;
    md5 = "fe05714e5037d56ccdcf4b36fe4e9346";
  };

  buildInputs = [
    pkgconfig glib gtk
    (if sslSupport then openssl else null)
    (if gpgSupport then gpgme else null)
  ];

  configureFlags = [
    (if sslSupport then "--enable-ssl" else null)
  ];

  # Bug in Sylpheed: it makes direct X11 calls (e.g., XSync), but it
  # doesn't pass -lX11.  The linker finds the missing symbols
  # indirectly (through GTK etc.), but doesn't include libX11.so in
  # the RPATH.  Thus, the executable fails at runtime.
  NIX_LDFLAGS = "-lX11";
}