2021-01-11 07:54:33 +00:00
|
|
|
{ lib, 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,
|
2020-06-07 13:39:09 +01:00
|
|
|
expat, libid3tag, ffmpeg_3, soundtouch, /*, portaudio - given up fighting their portaudio.patch */
|
2020-12-23 11:55:58 +00:00
|
|
|
cmake
|
|
|
|
}:
|
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-08-08 12:59:25 +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-08-08 12:59:25 +01:00
|
|
|
sha256 = "1xk0piv72d2xd3p7igr916fhcbrm76fhjr418k1rlqdzzg1hfljn";
|
2009-03-30 08:33:31 +01:00
|
|
|
};
|
2013-06-04 10:35:33 +01:00
|
|
|
|
2020-12-23 11:55:58 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
2016-12-30 04:40:28 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# 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
|
|
|
|
2020-12-23 11:55:58 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
2013-06-04 10:35:33 +01:00
|
|
|
buildInputs = [
|
2020-08-08 12:59:25 +01:00
|
|
|
file gettext wxGTK30 expat alsaLib
|
|
|
|
libsndfile soxr libid3tag libjack2 lv2 lilv serd sord sratom suil wxGTK30.gtk
|
2020-06-07 13:39:09 +01:00
|
|
|
ffmpeg_3 libmad lame libvorbis flac soundtouch
|
2015-09-29 22:02:46 +01:00
|
|
|
]; #ToDo: detach sbsms
|
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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2009-03-30 08:33:31 +01:00
|
|
|
description = "Sound editor with graphical UI";
|
2020-08-31 11:27:36 +01:00
|
|
|
homepage = "https://www.audacityteam.org/";
|
2016-12-30 04:40:28 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-06-07 13:07:20 +01:00
|
|
|
maintainers = with maintainers; [ lheckemann ];
|
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
|
|
|
};
|
|
|
|
}
|