Add mpc123, a Musepack command-line player.

svn path=/nixpkgs/trunk/; revision=19722
This commit is contained in:
Ludovic Courtès
2010-01-28 22:34:27 +00:00
parent 7f213f0403
commit 8a57c8bf35
3 changed files with 49 additions and 0 deletions
@@ -0,0 +1,32 @@
{ fetchurl, stdenv, gettext, libmpcdec, libao }:
let version = "0.2.4"; in
stdenv.mkDerivation rec {
name = "mpc123-${version}";
src = fetchurl {
url = "mirror://sourceforge/mpc123/version%20${version}/${name}.tar.gz";
sha256 = "0sf4pns0245009z6mbxpx7kqy4kwl69bc95wz9v23wgappsvxgy1";
};
patches = [ ./use-gcc.patch ];
buildInputs = [ gettext libmpcdec libao ];
installPhase =
# XXX: Should install locales too (though there's only 1 available).
'' ensureDir "$out/bin"
cp -v mpc123 "$out/bin"
'';
meta = {
homepage = http://mpc123.sourceforge.net/;
description = "mpc123, a Musepack (.mpc) audio player";
license = "GPLv2+";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}