2017-06-05 00:24:50 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl, alsaLib
|
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
}:
|
2010-08-21 17:54:02 +01:00
|
|
|
|
2015-06-13 22:19:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-10-19 11:46:21 +01:00
|
|
|
name = "mpg123-1.23.8";
|
2010-08-21 17:54:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-06-13 22:19:04 +01:00
|
|
|
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
|
2016-10-19 11:46:21 +01:00
|
|
|
sha256 = "13ngfzk84k4ks7ymanmq8f6707yrybra5h0mk3ir6mdnxk4068yy";
|
2010-08-21 17:54:02 +01:00
|
|
|
};
|
|
|
|
|
2013-07-04 05:52:14 +01:00
|
|
|
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
2010-08-21 17:54:02 +01:00
|
|
|
|
2017-06-05 00:24:50 +01:00
|
|
|
${if buildPlatform != hostPlatform then "configureFlags" else null} =
|
|
|
|
stdenv.lib.optional (hostPlatform ? mpg123) "--with-cpu=${hostPlatform.mpg123.cpu}";
|
2010-08-21 17:54:02 +01:00
|
|
|
|
|
|
|
meta = {
|
2015-06-13 22:19:04 +01:00
|
|
|
description = "Fast console MPEG Audio Player and decoder library";
|
|
|
|
homepage = http://mpg123.org;
|
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-08-21 17:54:02 +01:00
|
|
|
};
|
|
|
|
}
|