2016-09-11 21:24:51 +00:00
|
|
|
{ stdenv, fetchurl, wxGTK30, pkgconfig, gettext, gtk2, glib, zlib, perl, intltool,
|
2016-01-17 09:24:06 +00:00
|
|
|
libogg, libvorbis, libmad, alsaLib, libsndfile, soxr, flac, lame, fetchpatch,
|
2015-09-29 21:02:46 +00:00
|
|
|
expat, libid3tag, ffmpeg, soundtouch /*, portaudio - given up fighting their portaudio.patch */
|
2009-05-12 04:26:22 +00:00
|
|
|
}:
|
2007-10-29 10:52:04 +00:00
|
|
|
|
2011-01-02 17:13:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-24 02:51:54 +00:00
|
|
|
version = "2.1.2";
|
2011-01-02 17:13:34 +00:00
|
|
|
name = "audacity-${version}";
|
2009-03-30 07:33:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-08-14 17:44:19 +00:00
|
|
|
url = "https://github.com/audacity/audacity/archive/Audacity-${version}.tar.gz";
|
2016-04-24 02:51:54 +00:00
|
|
|
sha256 = "1ggr6g0mk36rqj7ahsg8b0b1r9kphwajzvxgn43md263rm87n04h";
|
2009-03-30 07:33:31 +00:00
|
|
|
};
|
2016-01-17 09:24:06 +00:00
|
|
|
patches = [(fetchpatch {
|
|
|
|
name = "new-ffmpeg.patch";
|
|
|
|
url = "https://projects.archlinux.org/svntogit/packages.git/plain/trunk"
|
|
|
|
+ "/audacity-ffmpeg.patch?h=packages/audacity&id=0c1e35798d4d70692";
|
|
|
|
sha256 = "19fr674mw844zmkp1476yigkcnmb6zyn78av64ccdwi3p68i00rf";
|
|
|
|
})];
|
2013-06-04 09:35:33 +00:00
|
|
|
|
|
|
|
preConfigure = /* we prefer system-wide libs */ ''
|
|
|
|
mv lib-src lib-src-rm
|
|
|
|
mkdir lib-src
|
2015-03-17 22:44:03 +00:00
|
|
|
mv lib-src-rm/{Makefile*,lib-widget-extra,portaudio-v19,portmixer,portsmf,FileDialog,sbsms,libnyquist} lib-src/
|
2013-06-04 09:35:33 +00:00
|
|
|
rm -r lib-src-rm/
|
|
|
|
'';
|
|
|
|
|
2016-04-24 02:51:54 +00:00
|
|
|
configureFlags = [ "--with-libsamplerate" ];
|
2015-09-29 21:02:46 +00:00
|
|
|
|
2013-06-04 09:35:33 +00:00
|
|
|
buildInputs = [
|
2016-04-24 02:51:54 +00:00
|
|
|
pkgconfig gettext wxGTK30 expat alsaLib
|
2016-09-11 21:24:51 +00:00
|
|
|
libsndfile soxr libid3tag gtk2
|
2015-09-29 21:02:46 +00:00
|
|
|
ffmpeg libmad lame libvorbis flac soundtouch
|
|
|
|
]; #ToDo: detach sbsms
|
2011-01-02 17:13:34 +00:00
|
|
|
|
|
|
|
dontDisableStatic = true;
|
2015-08-14 17:44:19 +00:00
|
|
|
doCheck = false; # Test fails
|
2011-01-02 17:13:34 +00:00
|
|
|
|
2007-10-29 10:52:04 +00:00
|
|
|
meta = {
|
2009-03-30 07:33:31 +00:00
|
|
|
description = "Sound editor with graphical UI";
|
2015-08-14 17:44:19 +00:00
|
|
|
homepage = http://audacityteam.org/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-02-05 21:08:12 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2013-12-09 00:20:57 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
2007-10-29 10:52:04 +00:00
|
|
|
};
|
|
|
|
}
|