mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
24 lines
561 B
Nix
24 lines
561 B
Nix
{stdenv, fetchurl, alsaLib }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mpg123-1.19.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/mpg123/mpg123-1.19.0.tar.bz2;
|
|
sha256 = "06xhd68mj9yp0r6l771aq0d7xgnl402a3wm2mvhxmd3w3ph29446";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
|
|
|
crossAttrs = {
|
|
configureFlags = if stdenv.cross ? mpg123 then
|
|
"--with-cpu=${stdenv.cross.mpg123.cpu}" else "";
|
|
};
|
|
|
|
meta = {
|
|
description = "Command-line MP3 player";
|
|
homepage = http://mpg123.sourceforge.net/;
|
|
license = "LGPL";
|
|
};
|
|
}
|