From 2ea67fd3857d9f2d751504c0561d9cb7b437daa2 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Mon, 14 May 2007 00:29:30 +0000 Subject: sylpheed 2.4.1 svn path=/nixpkgs/trunk/; revision=8681 --- .../networking/mailreaders/sylpheed/default.nix | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'pkgs/applications/networking/mailreaders/sylpheed/default.nix') diff --git a/pkgs/applications/networking/mailreaders/sylpheed/default.nix b/pkgs/applications/networking/mailreaders/sylpheed/default.nix index 381ba10ed847..1c52661e89b1 100644 --- a/pkgs/applications/networking/mailreaders/sylpheed/default.nix +++ b/pkgs/applications/networking/mailreaders/sylpheed/default.nix @@ -1,6 +1,6 @@ { sslSupport ? true , gpgSupport ? false -, stdenv, fetchurl, pkgconfig, gtk, glib +, stdenv, fetchurl, pkgconfig, gtk , openssl ? null , gpgme ? null }: @@ -9,15 +9,15 @@ assert sslSupport -> openssl != null; assert gpgSupport -> gpgme != null; stdenv.mkDerivation { - name = "sylpheed-2.1.9"; + name = "sylpheed-2.4.1"; src = fetchurl { - url = http://nix.cs.uu.nl/dist/tarballs/sylpheed-2.1.9.tar.bz2; - md5 = "fe05714e5037d56ccdcf4b36fe4e9346"; + url = http://sylpheed.sraoss.jp/sylpheed/v2.4/sylpheed-2.4.1.tar.bz2; + sha256 = "1hmia3lnh7yr2ca8bgxzn311waxfs0rhk0psck3dcjfhzxzp72zj"; }; buildInputs = [ - pkgconfig glib gtk + pkgconfig gtk (if sslSupport then openssl else null) (if gpgSupport then gpgme else null) ]; @@ -26,9 +26,4 @@ stdenv.mkDerivation { (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"; } -- cgit v1.2.3