Merge pull request #84069 from JustinLovinger/mpg123-conplay
This commit is contained in:
commit
2f3cee6250
@ -1,5 +1,9 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchurl, alsaLib
|
, fetchurl
|
||||||
|
, makeWrapper
|
||||||
|
|
||||||
|
, alsaLib
|
||||||
|
, perl
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -10,12 +14,30 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0vkcfdx0mqq6lmpczsmpa2jsb0s6dryx3i7gvr32i3w9b9w9ij9h";
|
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
|
configureFlags = stdenv.lib.optional
|
||||||
(stdenv.hostPlatform ? mpg123)
|
(stdenv.hostPlatform ? mpg123)
|
||||||
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
|
"--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 = {
|
meta = {
|
||||||
description = "Fast console MPEG Audio Player and decoder library";
|
description = "Fast console MPEG Audio Player and decoder library";
|
||||||
homepage = "http://mpg123.org";
|
homepage = "http://mpg123.org";
|
||||||
|
Loading…
Reference in New Issue
Block a user