nixpkgs/pkgs/applications/audio/mpg123/default.nix

50 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv
, fetchurl
, makeWrapper
, alsa-lib
, perl
2021-04-21 15:49:18 +00:00
, withConplay ? !stdenv.targetPlatform.isWindows
}:
2015-06-13 21:19:04 +00:00
stdenv.mkDerivation rec {
2021-03-25 23:49:19 +00:00
name = "mpg123-1.26.5";
src = fetchurl {
2015-06-13 21:19:04 +00:00
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
2021-03-25 23:49:19 +00:00
sha256 = "sha256-UCqX4Nk1vn432YczgCHY8wG641wohPKoPVnEtSRm7wY=";
};
2021-04-21 15:49:18 +00:00
outputs = [ "out" ] ++ lib.optionals withConplay [ "conplay" ];
2021-04-21 15:49:18 +00:00
nativeBuildInputs = lib.optionals withConplay [ makeWrapper ];
2021-04-21 15:49:18 +00:00
buildInputs = lib.optionals withConplay [ perl ]
++ lib.optionals (!stdenv.isDarwin && !stdenv.targetPlatform.isWindows) [ alsa-lib ];
2021-01-15 13:21:58 +00:00
configureFlags = lib.optional
(stdenv.hostPlatform ? mpg123)
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
2021-04-21 15:49:18 +00:00
postInstall = lib.optionalString withConplay ''
mkdir -p $conplay/bin
mv scripts/conplay $conplay/bin/
'';
2021-04-21 15:49:18 +00:00
preFixup = lib.optionalString withConplay ''
patchShebangs $conplay/bin/conplay
'';
2021-04-21 15:49:18 +00:00
postFixup = lib.optionalString withConplay ''
wrapProgram $conplay/bin/conplay \
--prefix PATH : $out/bin
'';
2021-04-21 15:49:18 +00:00
meta = with lib; {
2015-06-13 21:19:04 +00:00
description = "Fast console MPEG Audio Player and decoder library";
2021-04-21 15:49:18 +00:00
homepage = "https://mpg123.org";
license = licenses.lgpl21;
maintainers = [ maintainers.ftrvxmtrx ];
platforms = platforms.all;
};
}