1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

sylpheed 2.4.1

svn path=/nixpkgs/trunk/; revision=8681
This commit is contained in:
Armijn Hemel 2007-05-14 00:29:30 +00:00
parent 7e4289df47
commit 2ea67fd385
2 changed files with 6 additions and 11 deletions

View file

@ -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";
}

View file

@ -2909,7 +2909,7 @@ rec {
sylpheed = import ../applications/networking/mailreaders/sylpheed {
inherit fetchurl stdenv pkgconfig openssl gpgme;
inherit (gtkLibs) glib gtk;
inherit (gtkLibs) gtk;
sslSupport = true;
gpgSupport = true;
};