2009-05-12 06:26:22 +02:00
|
|
|
{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
|
2011-01-02 18:13:34 +01:00
|
|
|
libogg, libvorbis, libmad, alsaLib, libsndfile, libsamplerate, flac, lame,
|
2011-04-24 15:13:57 +02:00
|
|
|
expat, id3lib, ffmpeg, portaudio
|
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 {
|
2012-04-05 10:22:38 +02:00
|
|
|
version = "2.0.0";
|
2011-01-02 18:13:34 +01:00
|
|
|
name = "audacity-${version}";
|
2009-03-30 09:33:31 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-04-05 10:22:38 +02:00
|
|
|
url = "http://audacity.googlecode.com/files/audacity-minsrc-${version}.tar.bz2";
|
|
|
|
sha256 = "0spbib3f86b4qri0g13idyxvysg28hkpsglmjza681zrln62hjfq";
|
2009-03-30 09:33:31 +02:00
|
|
|
};
|
2012-04-05 10:22:38 +02:00
|
|
|
buildInputs = [ pkgconfig wxGTK libsndfile expat alsaLib libsamplerate
|
|
|
|
libvorbis libmad flac id3lib ffmpeg gettext ];
|
2011-01-02 18:13:34 +01:00
|
|
|
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
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;
|
2007-10-29 11:52:04 +01:00
|
|
|
};
|
|
|
|
}
|