Merge pull request #84069 from JustinLovinger/mpg123-conplay

gstqt5
Doron Behar 2020-09-24 22:57:18 +03:00 committed by GitHub
commit 2f3cee6250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 2 deletions

View File

@ -1,5 +1,9 @@
{ stdenv
, fetchurl, alsaLib
, fetchurl
, makeWrapper
, alsaLib
, perl
}:
stdenv.mkDerivation rec {
@ -10,12 +14,30 @@ stdenv.mkDerivation rec {
sha256 = "0vkcfdx0mqq6lmpczsmpa2jsb0s6dryx3i7gvr32i3w9b9w9ij9h";
};
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
outputs = [ "out" "conplay" ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ perl ] ++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
configureFlags = stdenv.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";