2015-02-14 21:41:15 +00:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, nasmSupport ? true, nasm ? null # Assembly optimizations
|
|
|
|
, cpmlSupport ? true # Compaq's fast math library
|
|
|
|
#, efenceSupport ? false, libefence ? null # Use ElectricFence for malloc debugging
|
|
|
|
, sndfileFileIOSupport ? false, libsndfile ? null # Use libsndfile, instead of lame's internal routines
|
|
|
|
, analyzerHooksSupport ? true # Use analyzer hooks
|
|
|
|
, decoderSupport ? true # mpg123 decoder
|
|
|
|
, frontendSupport ? true # Build the lame executable
|
|
|
|
#, mp3xSupport ? false, gtk1 ? null # Build GTK frame analyzer
|
|
|
|
, mp3rtpSupport ? false # Build mp3rtp
|
|
|
|
, debugSupport ? false # Debugging (disables optimizations)
|
|
|
|
}:
|
2005-01-19 22:12:34 +00:00
|
|
|
|
2015-02-14 21:41:15 +00:00
|
|
|
assert nasmSupport -> (nasm != null);
|
|
|
|
#assert efenceSupport -> (libefence != null);
|
|
|
|
assert sndfileFileIOSupport -> (libsndfile != null);
|
|
|
|
#assert mp3xSupport -> (analyzerHooksSupport && (gtk1 != null));
|
|
|
|
|
|
|
|
let
|
2015-05-22 21:33:08 +01:00
|
|
|
sndfileFileIO = if sndfileFileIOSupport then "sndfile" else "lame";
|
2015-02-14 21:41:15 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-05-27 21:49:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-14 21:41:15 +00:00
|
|
|
name = "lame-${version}";
|
|
|
|
version = "3.99.5";
|
|
|
|
|
2005-01-19 22:12:34 +00:00
|
|
|
src = fetchurl {
|
2010-05-27 21:49:04 +01:00
|
|
|
url = "mirror://sourceforge/lame/${name}.tar.gz";
|
2013-03-30 17:10:15 +00:00
|
|
|
sha256 = "1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14";
|
2005-01-19 22:12:34 +00:00
|
|
|
};
|
2009-10-19 23:05:34 +01:00
|
|
|
|
2015-02-14 21:41:15 +00:00
|
|
|
nativeBuildInputs = [ ]
|
|
|
|
++ optional nasmSupport nasm;
|
2010-05-05 21:38:13 +01:00
|
|
|
|
2015-02-14 21:41:15 +00:00
|
|
|
buildInputs = [ ]
|
|
|
|
#++ optional efenceSupport libefence
|
|
|
|
#++ optional mp3xSupport gtk1
|
|
|
|
++ optional sndfileFileIOSupport libsndfile;
|
2010-05-05 21:38:13 +01:00
|
|
|
|
2015-02-14 21:41:15 +00:00
|
|
|
configureFlags = [
|
2015-05-22 21:33:08 +01:00
|
|
|
(mkEnable nasmSupport "nasm" null)
|
|
|
|
(mkEnable cpmlSupport "cpml" null)
|
|
|
|
#(mkEnable efenceSupport "efence" null)
|
|
|
|
(mkWith true "fileio" sndfileFileIO)
|
|
|
|
(mkEnable analyzerHooksSupport "analyzer-hooks" null)
|
|
|
|
(mkEnable decoderSupport "decoder" null)
|
|
|
|
(mkEnable frontendSupport "frontend" null)
|
|
|
|
(mkEnable frontendSupport "dynamic-frontends" null)
|
|
|
|
#(mkEnable mp3xSupport "mp3x" null)
|
|
|
|
(mkEnable mp3rtpSupport "mp3rtp" null)
|
|
|
|
] ++ optional debugSupport [
|
|
|
|
(mkEnable true "debug" "alot")
|
2015-02-14 21:41:15 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2015-04-30 16:05:14 +01:00
|
|
|
description = "A high quality MPEG Audio Layer III (MP3) encoder";
|
2015-02-14 21:41:15 +00:00
|
|
|
homepage = http://lame.sourceforge.net;
|
2015-02-15 00:06:38 +00:00
|
|
|
license = licenses.lgpl2;
|
2015-02-14 21:41:15 +00:00
|
|
|
maintainers = with maintainers; [ codyopel ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2005-01-19 22:12:34 +00:00
|
|
|
}
|