6c283ae8f3
Fixes at least CVE-2017-10683, CVE-2017-11126, CVE-2017-9545, CVE-2017-12797.
27 lines
691 B
Nix
27 lines
691 B
Nix
{ stdenv
|
|
, fetchurl, alsaLib
|
|
, hostPlatform
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mpg123-1.25.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
|
|
sha256 = "1ws40fglyyk51jvmz8gfapjkw1g51pkch1rffdsbh4b1yay5xc9i";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
|
|
|
configureFlags =
|
|
stdenv.lib.optional (hostPlatform ? mpg123) "--with-cpu=${hostPlatform.mpg123.cpu}";
|
|
|
|
meta = {
|
|
description = "Fast console MPEG Audio Player and decoder library";
|
|
homepage = http://mpg123.org;
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|