3
0
Fork 0
forked from mirrors/nixpkgs

Adding mpg123 (it even cross-builds fine for the nanonote)

svn path=/nixpkgs/branches/stdenv-updates/; revision=23313
This commit is contained in:
Lluís Batlle i Rossell 2010-08-21 16:54:02 +00:00
parent c68d102286
commit e0b377fd81
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl, alsaLib }:
stdenv.mkDerivation {
name = "mpg123-1.12.3";
src = fetchurl {
url = mirror://sourceforge/mpg123/mpg123-1.12.3.tar.bz2;
sha256 = "1ij689s7jch3d4g0ja3jylaphallc8vgrsrm9b12254phnyy23xf";
};
buildInputs = [ alsaLib ];
crossAttrs = {
configureFlags = if stdenv.cross ? mpg123 then
"--with-cpu=${stdenv.cross.mpg123.cpu}" else "";
};
meta = {
description = "Command-line MP3 player";
homepage = http://mpg123.sourceforge.net/;
license = "LGPL";
};
}

View file

@ -5860,6 +5860,8 @@ let
mpc123 = callPackage ../applications/audio/mpc123 { };
mpg123 = callPackage ../applications/audio/mpg123 { };
mpg321 = callPackage ../applications/audio/mpg321 { };
MPlayer = callPackage ../applications/video/MPlayer {