nixpkgs/pkgs/development/libraries/faad2/default.nix
Eelco Dolstra 1485c905f7 * ffmpeg: build with faad2 support. However, vlc still won't play
mp4a audio.
* faad2: latest version.
* vlc: fix the hard-coded OSD font path name.  Dunno why they don't
  use fontconfig.

svn path=/nixpkgs/trunk/; revision=14501
2009-03-10 22:45:27 +00:00

19 lines
416 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "faad2-2.7";
src = fetchurl {
url = mirror://sourceforge/faac/faad2-2.7.tar.bz2;
sha256 = "1db37ydb6mxhshbayvirm5vz6j361bjim4nkpwjyhmy4ddfinmhl";
};
configureFlags = "--disable-static";
meta = {
description = "An open source MPEG-4 and MPEG-2 AAC decoder";
homepage = http://www.audiocoding.com/faad2.html;
license = "GPLv2";
};
}