2009-05-12 05:26:22 +01:00
|
|
|
{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
|
2013-06-04 10:35:33 +01:00
|
|
|
libogg, libvorbis, libmad, alsaLib, libsndfile, soxr, flac, lame,
|
2015-11-14 20:32:51 +00:00
|
|
|
expat, libid3tag, ffmpeg, soundtouch /*, portaudio - given up fighting their portaudio.patch */
|
2009-05-12 05:26:22 +01:00
|
|
|
}:
|
2007-10-29 10:52:04 +00:00
|
|
|
|
2011-01-02 17:13:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-14 18:44:19 +01:00
|
|
|
version = "2.1.1";
|
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";
|
|
|
|
sha256 = "15c5ff7ac1c0b19b08f4bdcb0f4988743da2f9ed3fab41d6f07600e67cb9ddb6";
|
2009-03-30 08:33:31 +01:00
|
|
|
};
|
2013-06-04 10:35:33 +01: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 10:35:33 +01:00
|
|
|
rm -r lib-src-rm/
|
|
|
|
'';
|
|
|
|
|
2015-11-14 20:32:51 +00:00
|
|
|
configureFlags = "--with-libsamplerate";
|
|
|
|
|
2013-06-04 10:35:33 +01:00
|
|
|
buildInputs = [
|
|
|
|
pkgconfig gettext wxGTK gtk expat alsaLib
|
|
|
|
libsndfile soxr libid3tag
|
2015-11-14 20:32:51 +00:00
|
|
|
ffmpeg libmad lame libvorbis flac soundtouch
|
|
|
|
]; #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
|
|
|
|
2007-10-29 10:52:04 +00:00
|
|
|
meta = {
|
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/;
|
2014-06-19 05:19:00 +01: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
|
|
|
};
|
|
|
|
}
|