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,17 @@
{stdenv, fetchurl, libao, libmad, libid3tag, zlib}:
stdenv.mkDerivation {
name = "mpg321-0.2.10";
src = fetchurl {
url = mirror://sourceforge/mpg321/mpg321-0.2.10.tar.gz;
sha256 = "db0c299592b8f1f704f41bd3fc3a2bf138658108588d51af61638c551af1b0d4";
};
buildInputs = [libao libid3tag libmad zlib];
meta = {
description = "Command-line MP3 player.";
homepage = http://mpg321.sourceforge.net/;
license = "GPLv2";
};
}