2017-06-04 23:24:50 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl, alsaLib
|
|
|
|
}:
|
2010-08-21 16:54:02 +00:00
|
|
|
|
2015-06-13 21:19:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-06-10 19:00:33 +00:00
|
|
|
name = "mpg123-1.26.1";
|
2010-08-21 16:54:02 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-06-13 21:19:04 +00:00
|
|
|
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
|
2020-06-10 19:00:33 +00:00
|
|
|
sha256 = "0cp01wdy77ggzqzzasxd5jd9iypcly5m4c89idc9mpgknyd65mkl";
|
2010-08-21 16:54:02 +00:00
|
|
|
};
|
|
|
|
|
2013-07-04 04:52:14 +00:00
|
|
|
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
2010-08-21 16:54:02 +00:00
|
|
|
|
2018-08-20 18:43:41 +00:00
|
|
|
configureFlags = stdenv.lib.optional
|
|
|
|
(stdenv.hostPlatform ? mpg123)
|
|
|
|
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
|
2010-08-21 16:54:02 +00:00
|
|
|
|
|
|
|
meta = {
|
2015-06-13 21:19:04 +00:00
|
|
|
description = "Fast console MPEG Audio Player and decoder library";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://mpg123.org";
|
2015-06-13 21:19:04 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-08-21 16:54:02 +00:00
|
|
|
};
|
|
|
|
}
|