Merge pull request #31174 from eqyiel/fix-lame

lame: prevent build failure from using outdated symbol list
This commit is contained in:
Daiderd Jordan 2017-11-04 15:20:33 +01:00 committed by GitHub
commit de62516777
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,6 +55,12 @@ stdenv.mkDerivation rec {
(if debugSupport then "--enable-debug=alot" else "")
];
preConfigure = ''
# Prevent a build failure for 3.100 due to using outdated symbol list
# https://hydrogenaud.io/index.php/topic,114777.msg946373.html#msg946373
sed -i '/lame_init_old/d' include/libmp3lame.sym
'';
meta = {
description = "A high quality MPEG Audio Layer III (MP3) encoder";
homepage = http://lame.sourceforge.net;