49 lines
1020 B
Nix
49 lines
1020 B
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, makeWrapper
|
|
|
|
, alsaLib
|
|
, perl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mpg123-1.26.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
|
|
sha256 = "0vkcfdx0mqq6lmpczsmpa2jsb0s6dryx3i7gvr32i3w9b9w9ij9h";
|
|
};
|
|
|
|
outputs = [ "out" "conplay" ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ perl ] ++ lib.optional (!stdenv.isDarwin) alsaLib;
|
|
|
|
configureFlags = lib.optional
|
|
(stdenv.hostPlatform ? mpg123)
|
|
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
|
|
|
|
postInstall = ''
|
|
mkdir -p $conplay/bin
|
|
mv scripts/conplay $conplay/bin/
|
|
'';
|
|
|
|
preFixup = ''
|
|
patchShebangs $conplay/bin/conplay
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $conplay/bin/conplay \
|
|
--prefix PATH : $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
description = "Fast console MPEG Audio Player and decoder library";
|
|
homepage = "http://mpg123.org";
|
|
license = lib.licenses.lgpl21;
|
|
maintainers = [ lib.maintainers.ftrvxmtrx ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|