7c754b1e3b
Do not even think about configureFlags unless in cross, to avoid hash breaking when not in cross.
27 lines
759 B
Nix
27 lines
759 B
Nix
{ stdenv
|
|
, fetchurl, alsaLib
|
|
, buildPlatform, hostPlatform
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mpg123-1.23.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
|
|
sha256 = "13ngfzk84k4ks7ymanmq8f6707yrybra5h0mk3ir6mdnxk4068yy";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
|
|
|
${if buildPlatform != hostPlatform then "configureFlags" else null} =
|
|
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;
|
|
};
|
|
}
|