2011-05-13 00:43:33 +04:00
|
|
|
{ stdenv, fetchurl, mp4v2 }:
|
2010-07-28 15:55:54 +04:00
|
|
|
|
2011-05-13 00:43:33 +04:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "faac-1.28";
|
2008-10-14 18:01:38 +04:00
|
|
|
|
2010-07-28 15:55:54 +04:00
|
|
|
src = fetchurl {
|
2013-07-14 04:09:34 +04:00
|
|
|
url = "mirror://sourceforge/faac/${name}.tar.gz";
|
2011-05-13 00:43:33 +04:00
|
|
|
sha256 = "1pqr7nf6p2r283n0yby2czd3iy159gz8rfinkis7vcfgyjci2565";
|
2008-10-14 18:01:38 +04:00
|
|
|
};
|
|
|
|
|
2011-05-13 00:43:33 +04:00
|
|
|
buildInputs = [ mp4v2 ];
|
2008-10-14 18:01:38 +04:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 15:55:54 +04:00
|
|
|
description = "Open source MPEG-4 and MPEG-2 AAC encoder";
|
|
|
|
homepage = http://www.audiocoding.com/faac.html;
|
2013-12-08 02:03:16 +04:00
|
|
|
# Incompatible with GPL. Some changes to the base code, included in faac,
|
|
|
|
# are under LGPL though.
|
2014-04-09 08:51:37 +04:00
|
|
|
license = "unfree-redistributable";
|
2008-10-14 18:01:38 +04:00
|
|
|
};
|
|
|
|
}
|