mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
27 lines
695 B
Nix
27 lines
695 B
Nix
{ stdenv
|
|
, fetchurl, alsaLib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mpg123-1.25.13";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
|
|
sha256 = "02l915jq0ymndb082g6w89bpf66z04ifa1lr7ga3yycw6m46hc4h";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
|
|
|
|
configureFlags = stdenv.lib.optional
|
|
(stdenv.hostPlatform ? mpg123)
|
|
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
|
|
|
|
meta = {
|
|
description = "Fast console MPEG Audio Player and decoder library";
|
|
homepage = http://mpg123.org;
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|