2017-06-05 00:24:50 +01:00
|
|
|
{ stdenv
|
2020-04-02 04:31:06 +01:00
|
|
|
, fetchurl
|
|
|
|
, makeWrapper
|
|
|
|
|
|
|
|
, alsaLib
|
|
|
|
, perl
|
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 {
|
2020-08-26 19:47:36 +01:00
|
|
|
name = "mpg123-1.26.3";
|
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";
|
2020-08-26 19:47:36 +01:00
|
|
|
sha256 = "0vkcfdx0mqq6lmpczsmpa2jsb0s6dryx3i7gvr32i3w9b9w9ij9h";
|
2010-08-21 17:54:02 +01:00
|
|
|
};
|
|
|
|
|
2020-04-02 04:31:06 +01:00
|
|
|
outputs = [ "out" "conplay" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
buildInputs = [ perl ] ++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
2010-08-21 17:54:02 +01:00
|
|
|
|
2018-08-20 19:43:41 +01:00
|
|
|
configureFlags = stdenv.lib.optional
|
|
|
|
(stdenv.hostPlatform ? mpg123)
|
|
|
|
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
|
2010-08-21 17:54:02 +01:00
|
|
|
|
2020-04-02 04:31:06 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $conplay/bin
|
|
|
|
mv scripts/conplay $conplay/bin/
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
patchShebangs $conplay/bin/conplay
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $conplay/bin/conplay \
|
|
|
|
--prefix PATH : $out/bin
|
|
|
|
'';
|
|
|
|
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://mpg123.org";
|
2015-06-13 22:19:04 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|