* flac: patch for building on GCC 4.3.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14058
This commit is contained in:
Eelco Dolstra 2009-02-12 21:19:31 +00:00
parent 390695e73f
commit 700c8abc43

View File

@ -9,6 +9,14 @@ stdenv.mkDerivation rec {
};
buildInputs = [libogg];
patches = [
# Fix for building on GCC 4.3.
(fetchurl {
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/media-libs/flac/files/flac-1.2.1-gcc-4.3-includes.patch?rev=1.1";
sha256 = "1m6ql5vyjb2jlp5qiqp6w0drq1m6x6y3i1dnl5ywywl3zd36k0mr";
})
];
meta = {
homepage = http://flac.sourceforge.net;