2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, fetchurl, wxGTK30, pkgconfig, file, gettext, gtk2,
|
|
|
|
libvorbis, libmad, libjack2, lv2, lilv, serd, sord, sratom, suil, alsaLib, libsndfile, soxr, flac, lame,
|
2017-09-10 10:52:44 +02:00
|
|
|
expat, libid3tag, ffmpeg, soundtouch, /*, portaudio - given up fighting their portaudio.patch */
|
|
|
|
autoconf, automake, libtool
|
2009-05-12 06:26:22 +02:00
|
|
|
}:
|
2007-10-29 11:52:04 +01:00
|
|
|
|
2016-12-30 05:40:28 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2011-01-02 18:13:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-10 04:55:21 +01:00
|
|
|
version = "2.3.1";
|
2011-01-02 18:13:34 +01:00
|
|
|
name = "audacity-${version}";
|
2009-03-30 09:33:31 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-08-14 19:44:19 +02:00
|
|
|
url = "https://github.com/audacity/audacity/archive/Audacity-${version}.tar.gz";
|
2019-03-10 04:55:21 +01:00
|
|
|
sha256 = "089kz6hgqg0caz33sps19wpkfnza5gf7brdq2p9y6bnwkipw1w9f";
|
2009-03-30 09:33:31 +02:00
|
|
|
};
|
2013-06-04 11:35:33 +02:00
|
|
|
|
|
|
|
preConfigure = /* we prefer system-wide libs */ ''
|
2017-09-10 10:52:44 +02:00
|
|
|
autoreconf -vi # use system libraries
|
2016-12-30 05:40:28 +01:00
|
|
|
|
|
|
|
# we will get a (possibly harmless) warning during configure without this
|
|
|
|
substituteInPlace configure \
|
|
|
|
--replace /usr/bin/file ${file}/bin/file
|
2013-06-04 11:35:33 +02:00
|
|
|
'';
|
|
|
|
|
2016-12-30 05:40:28 +01: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 23:02:46 +02:00
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-06-04 11:35:33 +02:00
|
|
|
buildInputs = [
|
2017-09-14 21:24:37 +02:00
|
|
|
file gettext wxGTK30 expat alsaLib
|
2016-11-01 02:03:41 +01:00
|
|
|
libsndfile soxr libid3tag libjack2 lv2 lilv serd sord sratom suil gtk2
|
2015-09-29 23:02:46 +02:00
|
|
|
ffmpeg libmad lame libvorbis flac soundtouch
|
2017-09-10 10:52:44 +02:00
|
|
|
autoconf automake libtool # for the preConfigure phase
|
2015-09-29 23:02:46 +02:00
|
|
|
]; #ToDo: detach sbsms
|
2011-01-02 18:13:34 +01:00
|
|
|
|
2017-02-04 20:46:49 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-01-02 18:13:34 +01:00
|
|
|
dontDisableStatic = true;
|
2015-08-14 19:44:19 +02:00
|
|
|
doCheck = false; # Test fails
|
2011-01-02 18:13:34 +01:00
|
|
|
|
2016-12-30 05:40:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-30 09:33:31 +02:00
|
|
|
description = "Sound editor with graphical UI";
|
2015-08-14 19:44:19 +02:00
|
|
|
homepage = http://audacityteam.org/;
|
2016-12-30 05:40:28 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
2007-10-29 11:52:04 +01:00
|
|
|
};
|
|
|
|
}
|