2019-11-13 09:45:21 +00:00
|
|
|
{ stdenv, fetchzip, wxGTK30, pkgconfig, file, gettext,
|
2018-07-21 01:44:44 +01:00
|
|
|
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 {
|
2020-05-22 11:42:03 +01:00
|
|
|
version = "2.4.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "audacity";
|
2009-03-30 08:33:31 +01:00
|
|
|
|
2019-11-13 09:45:21 +00:00
|
|
|
src = fetchzip {
|
2015-08-14 18:44:19 +01:00
|
|
|
url = "https://github.com/audacity/audacity/archive/Audacity-${version}.tar.gz";
|
2020-05-22 11:42:03 +01:00
|
|
|
sha256 = "1xk0piv72d2xd3p7igr916fhcbrm76fhjr418k1rlqdzzg1hfljn";
|
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
|
2019-10-30 00:40:49 +00:00
|
|
|
NIX_LDFLAGS = toString [
|
2016-12-30 04:40:28 +00:00
|
|
|
# LAME
|
|
|
|
"-lmp3lame"
|
|
|
|
# ffmpeg
|
|
|
|
"-lavcodec"
|
|
|
|
"-lavdevice"
|
|
|
|
"-lavfilter"
|
|
|
|
"-lavformat"
|
|
|
|
"-lavresample"
|
|
|
|
"-lavutil"
|
|
|
|
"-lpostproc"
|
|
|
|
"-lswresample"
|
|
|
|
"-lswscale"
|
|
|
|
];
|
2015-09-29 22:02:46 +01:00
|
|
|
|
2019-11-13 09:45:21 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoconf automake libtool ];
|
2013-06-04 10:35:33 +01:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
file gettext wxGTK30 expat alsaLib
|
2019-11-13 09:01:51 +00:00
|
|
|
libsndfile soxr libid3tag libjack2 lv2 lilv serd sord sratom suil wxGTK30.gtk
|
2015-09-29 22:02:46 +01:00
|
|
|
ffmpeg libmad lame libvorbis flac soundtouch
|
|
|
|
]; #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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://audacityteam.org/";
|
2016-12-30 04:40:28 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2019-11-13 09:45:21 +00:00
|
|
|
platforms = intersectLists platforms.linux platforms.x86; # fails on ARM
|
2007-10-29 10:52:04 +00:00
|
|
|
};
|
|
|
|
}
|