2015-02-15 00:41:15 +03: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-20 01:12:34 +03:00
|
|
|
|
2015-02-15 00:41:15 +03:00
|
|
|
assert nasmSupport -> (nasm != null);
|
|
|
|
#assert efenceSupport -> (libefence != null);
|
|
|
|
assert sndfileFileIOSupport -> (libsndfile != null);
|
|
|
|
#assert mp3xSupport -> (analyzerHooksSupport && (gtk1 != null));
|
|
|
|
|
|
|
|
let
|
2015-06-01 22:29:47 +03:00
|
|
|
mkFlag = optSet: flag: if optSet then "--enable-${flag}" else "--disable-${flag}";
|
2015-02-15 00:41:15 +03:00
|
|
|
in
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2010-05-28 00:49:04 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2015-02-15 00:41:15 +03:00
|
|
|
name = "lame-${version}";
|
|
|
|
version = "3.99.5";
|
|
|
|
|
2005-01-20 01:12:34 +03:00
|
|
|
src = fetchurl {
|
2010-05-28 00:49:04 +04:00
|
|
|
url = "mirror://sourceforge/lame/${name}.tar.gz";
|
2013-03-30 21:10:15 +04:00
|
|
|
sha256 = "1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14";
|
2005-01-20 01:12:34 +03:00
|
|
|
};
|
2009-10-20 02:05:34 +04:00
|
|
|
|
2015-06-04 16:32:19 +03:00
|
|
|
patches = [ ./gcc-4.9.patch ];
|
|
|
|
|
2015-10-08 00:20:28 +03:00
|
|
|
outputs = [ "out" "lib" "doc" ]; # a small single header
|
|
|
|
outputMan = "out";
|
|
|
|
|
2015-02-15 00:41:15 +03:00
|
|
|
nativeBuildInputs = [ ]
|
|
|
|
++ optional nasmSupport nasm;
|
2010-05-06 00:38:13 +04:00
|
|
|
|
2015-02-15 00:41:15 +03:00
|
|
|
buildInputs = [ ]
|
|
|
|
#++ optional efenceSupport libefence
|
|
|
|
#++ optional mp3xSupport gtk1
|
|
|
|
++ optional sndfileFileIOSupport libsndfile;
|
2010-05-06 00:38:13 +04:00
|
|
|
|
2015-02-15 00:41:15 +03:00
|
|
|
configureFlags = [
|
2015-06-01 22:29:47 +03:00
|
|
|
(mkFlag nasmSupport "nasm")
|
|
|
|
(mkFlag cpmlSupport "cpml")
|
|
|
|
#(mkFlag efenceSupport "efence")
|
|
|
|
(if sndfileFileIOSupport then "--with-fileio=sndfile" else "--with-fileio=lame")
|
|
|
|
(mkFlag analyzerHooksSupport "analyzer-hooks")
|
|
|
|
(mkFlag decoderSupport "decoder")
|
|
|
|
(mkFlag frontendSupport "frontend")
|
|
|
|
(mkFlag frontendSupport "dynamic-frontends")
|
|
|
|
#(mkFlag mp3xSupport "mp3x")
|
|
|
|
(mkFlag mp3rtpSupport "mp3rtp")
|
|
|
|
(if debugSupport then "--enable-debug=alot" else "")
|
2015-02-15 00:41:15 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2015-04-30 18:05:14 +03:00
|
|
|
description = "A high quality MPEG Audio Layer III (MP3) encoder";
|
2015-02-15 00:41:15 +03:00
|
|
|
homepage = http://lame.sourceforge.net;
|
2015-02-15 03:06:38 +03:00
|
|
|
license = licenses.lgpl2;
|
2015-02-15 00:41:15 +03:00
|
|
|
maintainers = with maintainers; [ codyopel ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2005-01-20 01:12:34 +03:00
|
|
|
}
|