summary refs log tree commit diff
path: root/pkgs/development/libraries/faad2
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-10-14 14:01:38 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-10-14 14:01:38 +0000
commit07fc484a9295f07a92876484295904b9d77a8a6b (patch)
tree60fc508434e4ab7fe7e0dd6310fe962d390ac1a2 /pkgs/development/libraries/faad2
parentef6cf67fc4f078e1360e4266e242b08b80ecf1c2 (diff)
downloadnixpkgs-07fc484a9295f07a92876484295904b9d77a8a6b.tar
nixpkgs-07fc484a9295f07a92876484295904b9d77a8a6b.tar.gz
nixpkgs-07fc484a9295f07a92876484295904b9d77a8a6b.tar.bz2
nixpkgs-07fc484a9295f07a92876484295904b9d77a8a6b.tar.lz
nixpkgs-07fc484a9295f07a92876484295904b9d77a8a6b.tar.xz
nixpkgs-07fc484a9295f07a92876484295904b9d77a8a6b.tar.zst
nixpkgs-07fc484a9295f07a92876484295904b9d77a8a6b.zip
added faad2 and faac (deps of cinelerra)
svn path=/nixpkgs/trunk/; revision=13067
Diffstat (limited to 'pkgs/development/libraries/faad2')
-rw-r--r--pkgs/development/libraries/faad2/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/faad2/default.nix b/pkgs/development/libraries/faad2/default.nix
new file mode 100644
index 00000000000..23566428529
--- /dev/null
+++ b/pkgs/development/libraries/faad2/default.nix
@@ -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";
+  };
+}