summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-02-12 21:19:31 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-02-12 21:19:31 +0000
commit700c8abc43766c61a35daa61eac12a9bb401b34f (patch)
tree5989d380684e8208418b66e70afd149d6a4ea5ef /pkgs/applications/audio
parent390695e73f63f9f95dc0be24ca2971ca29074952 (diff)
* flac: patch for building on GCC 4.3.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14058
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/flac/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/applications/audio/flac/default.nix b/pkgs/applications/audio/flac/default.nix
index ad9d3356cdaf..4eef90b575cc 100644
--- a/pkgs/applications/audio/flac/default.nix
+++ b/pkgs/applications/audio/flac/default.nix
@@ -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;