added faad2 and faac (deps of cinelerra)

svn path=/nixpkgs/trunk/; revision=13067
This commit is contained in:
Marc Weber
2008-10-14 14:01:38 +00:00
parent ef6cf67fc4
commit 07fc484a92
3 changed files with 46 additions and 0 deletions
@@ -0,0 +1,19 @@
args:
args.stdenv.mkDerivation {
name = "faad2-2.6.1";
src = args.fetchurl {
url = http://downloads.sourceforge.net/faac/faad2-2.6.1.tar.gz;
sha256 = "0p1870qfpaadphdfphbcfalf6d25r30k3y1f7sa7ly4vq3hc5lla";
};
preConfigure = "./bootstrap";
buildInputs =(with args; [autoconf automake libtool]);
meta = {
description="AAC audio decoding library";
homepage = http://www.audiocoding.com/faad2.html;
license = "GPLv2";
};
}