2009-05-11 21:26:22 -07:00
|
|
|
{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
|
2013-06-04 02:35:33 -07:00
|
|
|
libogg, libvorbis, libmad, alsaLib, libsndfile, soxr, flac, lame,
|
|
|
|
expat, libid3tag, ffmpeg /*, portaudio - given up fighting their portaudio.patch */
|
2009-05-11 21:26:22 -07:00
|
|
|
}:
|
2007-10-29 03:52:04 -07:00
|
|
|
|
2011-01-02 09:13:34 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-08 16:20:57 -08:00
|
|
|
version = "2.0.5";
|
2011-01-02 09:13:34 -08:00
|
|
|
name = "audacity-${version}";
|
2009-03-30 00:33:31 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-06-04 02:35:33 -07:00
|
|
|
url = "http://audacity.googlecode.com/files/audacity-minsrc-${version}.tar.xz";
|
2013-12-08 16:20:57 -08:00
|
|
|
sha256 = "0y9bvc3a3zxsk31yg7bha029mzkjiw5i9m86kbyj7x8ps0fm91z2";
|
2009-03-30 00:33:31 -07:00
|
|
|
};
|
2013-06-04 02:35:33 -07:00
|
|
|
|
|
|
|
preConfigure = /* we prefer system-wide libs */ ''
|
|
|
|
mv lib-src lib-src-rm
|
|
|
|
mkdir lib-src
|
2015-03-17 15:44:03 -07:00
|
|
|
mv lib-src-rm/{Makefile*,lib-widget-extra,portaudio-v19,portmixer,portsmf,FileDialog,sbsms,libnyquist} lib-src/
|
2013-06-04 02:35:33 -07:00
|
|
|
rm -r lib-src-rm/
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pkgconfig gettext wxGTK gtk expat alsaLib
|
|
|
|
libsndfile soxr libid3tag
|
|
|
|
ffmpeg libmad lame libvorbis flac
|
|
|
|
]; #ToDo: soundtouch, detach sbsms
|
2011-01-02 09:13:34 -08:00
|
|
|
|
|
|
|
dontDisableStatic = true;
|
2013-06-04 02:35:33 -07:00
|
|
|
doCheck = true;
|
2011-01-02 09:13:34 -08:00
|
|
|
|
2007-10-29 03:52:04 -07:00
|
|
|
meta = {
|
2009-03-30 00:33:31 -07:00
|
|
|
description = "Sound editor with graphical UI";
|
2008-01-30 11:49:42 -08:00
|
|
|
homepage = http://audacity.sourceforge.net;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2011-02-05 13:08:12 -08:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2013-12-08 16:20:57 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
2007-10-29 03:52:04 -07:00
|
|
|
};
|
|
|
|
}
|