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