* Applied a patch to make Pan build with GCC 4.4.

svn path=/nixpkgs/branches/stdenv-updates/; revision=19667
This commit is contained in:
Eelco Dolstra 2010-01-26 14:48:44 +00:00
parent 566c9ffdc2
commit e907369c62

View File

@ -13,6 +13,14 @@ stdenv.mkDerivation {
sha1 = "a0bd98ea1ba174800896611e3305a6b6d8dbde2f"; sha1 = "a0bd98ea1ba174800896611e3305a6b6d8dbde2f";
}; };
patches =
[ # Build on GCC 4.4.
(fetchurl {
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/net-nntp/pan/files/pan-0.133-gcc44.patch?rev=1.1";
sha256 = "05xmgvcpl1gjcfab8xsdy400p55j59hp52fwa4qbwlqy3c35qv1v";
})
];
buildInputs = [pkgconfig gtk perl pcre gmime gettext] buildInputs = [pkgconfig gtk perl pcre gmime gettext]
++ stdenv.lib.optional spellChecking gtkspell; ++ stdenv.lib.optional spellChecking gtkspell;