about summary refs log tree commit diff
path: root/pkgs/development/libraries/faad2/default.nix
blob: fc489f9eb665bf0735c0c47a867d1590a6e5cae9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "faad2-2.7";

  src = fetchurl {
    url = mirror://sourceforge/faac/faad2-2.7.tar.bz2;
    sha256 = "1db37ydb6mxhshbayvirm5vz6j361bjim4nkpwjyhmy4ddfinmhl";
  };

  meta = {
    description = "An open source MPEG-4 and MPEG-2 AAC decoder";
    homepage = http://www.audiocoding.com/faad2.html;
    license = "GPLv2";
  };
}