2016-12-30 04:40:28 +00:00
|
|
|
{ stdenv, fetchurl, wxGTK30, pkgconfig, file, gettext, gtk2, glib, zlib, perl, intltool,
|
2017-11-13 18:01:59 +00:00
|
|
|
libogg, libvorbis, libmad, libjack2, lv2, lilv, serd, sord, sratom, suil, alsaLib, libsndfile, soxr, flac, lame,
|
2017-09-10 09:52:44 +01:00
|
|
|
expat, libid3tag, ffmpeg, soundtouch, /*, portaudio - given up fighting their portaudio.patch */
|
|
|
|
autoconf, automake, libtool
|
2009-05-12 05:26:22 +01:00
|
|
|
}:
|
2007-10-29 10:52:04 +00:00
|
|
|
|
2016-12-30 04:40:28 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2011-01-02 17:13:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 02:54:37 +00:00
|
|
|
version = "2.2.2";
|
2011-01-02 17:13:34 +00:00
|
|
|
name = "audacity-${version}";
|
2009-03-30 08:33:31 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-08-14 18:44:19 +01:00
|
|
|
url = "https://github.com/audacity/audacity/archive/Audacity-${version}.tar.gz";
|
2018-02-25 02:54:37 +00:00
|
|
|
sha256 = "18q7i77ynihx7xp45lz2lv0k0wrh6736pcrivlpwrxjgbvyqx7km";
|
2009-03-30 08:33:31 +01:00
|
|
|
};
|
2013-06-04 10:35:33 +01:00
|
|
|
|
|
|
|
preConfigure = /* we prefer system-wide libs */ ''
|
2017-09-10 09:52:44 +01:00
|
|
|
autoreconf -vi # use system libraries
|
2016-12-30 04:40:28 +00:00
|
|
|
|
|
|
|
# we will get a (possibly harmless) warning during configure without this
|
|
|
|
substituteInPlace configure \
|
|
|
|
--replace /usr/bin/file ${file}/bin/file
|
2013-06-04 10:35:33 +01:00
|
|
|
'';
|
|
|
|
|
2016-12-30 04:40:28 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-libsamplerate"
|
|
|
|
];
|
|
|
|
|
|
|
|
# audacity only looks for lame and ffmpeg at runtime, so we need to link them in manually
|
|
|
|
NIX_LDFLAGS = [
|
|
|
|
# LAME
|
|
|
|
"-lmp3lame"
|
|
|
|
# ffmpeg
|
|
|
|
"-lavcodec"
|
|
|
|
"-lavdevice"
|
|
|
|
"-lavfilter"
|
|
|
|
"-lavformat"
|
|
|
|
"-lavresample"
|
|
|
|
"-lavutil"
|
|
|
|
"-lpostproc"
|
|
|
|
"-lswresample"
|
|
|
|
"-lswscale"
|
|
|
|
];
|
2015-09-29 22:02:46 +01:00
|
|
|
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-06-04 10:35:33 +01:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
file gettext wxGTK30 expat alsaLib
|
2016-11-01 01:03:41 +00:00
|
|
|
libsndfile soxr libid3tag libjack2 lv2 lilv serd sord sratom suil gtk2
|
2015-09-29 22:02:46 +01:00
|
|
|
ffmpeg libmad lame libvorbis flac soundtouch
|
2017-09-10 09:52:44 +01:00
|
|
|
autoconf automake libtool # for the preConfigure phase
|
2015-09-29 22:02:46 +01:00
|
|
|
]; #ToDo: detach sbsms
|
2011-01-02 17:13:34 +00:00
|
|
|
|
2017-02-04 19:46:49 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-01-02 17:13:34 +00:00
|
|
|
dontDisableStatic = true;
|
2015-08-14 18:44:19 +01:00
|
|
|
doCheck = false; # Test fails
|
2011-01-02 17:13:34 +00:00
|
|
|
|
2016-12-30 04:40:28 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-30 08:33:31 +01:00
|
|
|
description = "Sound editor with graphical UI";
|
2015-08-14 18:44:19 +01:00
|
|
|
homepage = http://audacityteam.org/;
|
2016-12-30 04:40:28 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
2007-10-29 10:52:04 +00:00
|
|
|
};
|
|
|
|
}
|