2021-01-15 13:21:58 +00:00
|
|
|
{ lib, stdenv
|
2020-04-02 04:31:06 +01:00
|
|
|
, fetchurl
|
|
|
|
, makeWrapper
|
2021-06-10 03:57:09 +01:00
|
|
|
, alsa-lib
|
2020-04-02 04:31:06 +01:00
|
|
|
, perl
|
2021-04-21 16:49:18 +01:00
|
|
|
, withConplay ? !stdenv.targetPlatform.isWindows
|
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 {
|
2021-03-25 23:49:19 +00:00
|
|
|
name = "mpg123-1.26.5";
|
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";
|
2021-03-25 23:49:19 +00:00
|
|
|
sha256 = "sha256-UCqX4Nk1vn432YczgCHY8wG641wohPKoPVnEtSRm7wY=";
|
2010-08-21 17:54:02 +01:00
|
|
|
};
|
|
|
|
|
2021-04-21 16:49:18 +01:00
|
|
|
outputs = [ "out" ] ++ lib.optionals withConplay [ "conplay" ];
|
2020-04-02 04:31:06 +01:00
|
|
|
|
2021-04-21 16:49:18 +01:00
|
|
|
nativeBuildInputs = lib.optionals withConplay [ makeWrapper ];
|
2020-04-02 04:31:06 +01:00
|
|
|
|
2021-04-21 16:49:18 +01:00
|
|
|
buildInputs = lib.optionals withConplay [ perl ]
|
2021-06-10 03:57:09 +01:00
|
|
|
++ lib.optionals (!stdenv.isDarwin && !stdenv.targetPlatform.isWindows) [ alsa-lib ];
|
2010-08-21 17:54:02 +01:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
configureFlags = lib.optional
|
2018-08-20 19:43:41 +01:00
|
|
|
(stdenv.hostPlatform ? mpg123)
|
|
|
|
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
|
2010-08-21 17:54:02 +01:00
|
|
|
|
2021-04-21 16:49:18 +01:00
|
|
|
postInstall = lib.optionalString withConplay ''
|
2020-04-02 04:31:06 +01:00
|
|
|
mkdir -p $conplay/bin
|
|
|
|
mv scripts/conplay $conplay/bin/
|
|
|
|
'';
|
|
|
|
|
2021-04-21 16:49:18 +01:00
|
|
|
preFixup = lib.optionalString withConplay ''
|
2020-04-02 04:31:06 +01:00
|
|
|
patchShebangs $conplay/bin/conplay
|
|
|
|
'';
|
|
|
|
|
2021-04-21 16:49:18 +01:00
|
|
|
postFixup = lib.optionalString withConplay ''
|
2020-04-02 04:31:06 +01:00
|
|
|
wrapProgram $conplay/bin/conplay \
|
|
|
|
--prefix PATH : $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-04-21 16:49:18 +01:00
|
|
|
meta = with lib; {
|
2015-06-13 22:19:04 +01:00
|
|
|
description = "Fast console MPEG Audio Player and decoder library";
|
2021-04-21 16:49:18 +01:00
|
|
|
homepage = "https://mpg123.org";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = [ maintainers.ftrvxmtrx ];
|
|
|
|
platforms = platforms.all;
|
2010-08-21 17:54:02 +01:00
|
|
|
};
|
|
|
|
}
|