Add mpg321, libao and libid3tag; upgrade libmad.

svn path=/nixpkgs/trunk/; revision=10626
This commit is contained in:
Ludovic Courtès
2008-02-11 21:02:38 +00:00
parent c54243a009
commit a30e268cb7
5 changed files with 74 additions and 2 deletions
@@ -0,0 +1,19 @@
{stdenv, fetchurl, pkgconfig}:
stdenv.mkDerivation {
name = "libao-0.8.8";
src = fetchurl {
url = http://downloads.xiph.org/releases/ao/libao-0.8.8.tar.gz;
sha256 = "e52e05af6b10f42d2ee9845df1a581bf2b352060eabf7946aee0a600c3878954";
};
buildInputs = [pkgconfig];
meta = {
description = ''Libao is Xiph.org's cross-platform audio
library that allows programs to output audio
using a simple API on a wide variety of platforms.'';
homepage = http://xiph.org/ao/;
license = "GPL";
};
}