2017-06-05 00:24:50 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl, alsaLib
|
2017-06-23 22:45:27 +01:00
|
|
|
, hostPlatform
|
2017-06-05 00:24:50 +01:00
|
|
|
}:
|
2010-08-21 17:54:02 +01:00
|
|
|
|
2015-06-13 22:19:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-09-28 14:34:30 +01:00
|
|
|
name = "mpg123-1.25.7";
|
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";
|
2017-09-28 14:34:30 +01:00
|
|
|
sha256 = "1ws40fglyyk51jvmz8gfapjkw1g51pkch1rffdsbh4b1yay5xc9i";
|
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-23 22:45:27 +01:00
|
|
|
configureFlags =
|
2017-06-05 00:24:50 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|