xbase: fix build with new gcc via a Gentoo patch

This commit is contained in:
Vladimír Čunát 2013-10-30 21:40:41 +01:00
parent cf9a57daf3
commit 7ff9622310

View File

@ -9,7 +9,13 @@ stdenv.mkDerivation {
};
prePatch = "find . -type f -not -name configure -print0 | xargs -0 chmod -x";
patches = [ ./xbase-fixes.patch ];
patches = [
./xbase-fixes.patch
(fetchurl {
url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-db/xbase/files/xbase-3.1.2-gcc47.patch?revision=1.1";
sha256 = "1kpcrkkcqdwl609yd0qxlvp743icz3vni13993sz6fkgn5lah8yl";
})
];
meta = {
homepage = http://linux.techass.com/projects/xdb/;