nixpkgs/pkgs/applications/audio/mpg123/default.nix
Will Dietz 3bdcd3e298 mpg123: 1.25.8 -> 1.25.10
1.25.10: https://www.mpg123.de/cgi-bin/news.cgi#2018-03-05
1.25.9 was replaced by 1.25.10 before it was announced (see link above).
2018-04-03 14:22:27 -05:00

27 lines
692 B
Nix

{ stdenv
, fetchurl, alsaLib
, hostPlatform
}:
stdenv.mkDerivation rec {
name = "mpg123-1.25.10";
src = fetchurl {
url = "mirror://sourceforge/mpg123/${name}.tar.bz2";
sha256 = "08vhp8lz7d9ybhxcmkq3adwfryhivfvp0745k4r9kgz4wap3f4vc";
};
buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
configureFlags =
stdenv.lib.optional (hostPlatform ? mpg123) "--with-cpu=${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;
};
}