nixpkgs/pkgs/applications/audio/mpg123/default.nix

27 lines
695 B
Nix
Raw Normal View History

{ stdenv
, fetchurl, alsaLib
}:
2015-06-13 21:19:04 +00:00
stdenv.mkDerivation rec {
2019-11-02 13:15:23 +00:00
name = "mpg123-1.25.13";
src = fetchurl {
2015-06-13 21:19:04 +00:00
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
2019-11-02 13:15:23 +00:00
sha256 = "02l915jq0ymndb082g6w89bpf66z04ifa1lr7ga3yycw6m46hc4h";
};
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
configureFlags = stdenv.lib.optional
(stdenv.hostPlatform ? mpg123)
"--with-cpu=${stdenv.hostPlatform.mpg123.cpu}";
meta = {
2015-06-13 21:19:04 +00:00
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;
};
}