2009-05-12 06:26:22 +02:00
|
|
|
{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
|
|
|
|
libogg, libvorbis, libmad
|
|
|
|
}:
|
2007-10-29 11:52:04 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-03-30 09:33:31 +02:00
|
|
|
name = "audacity-1.3.7";
|
|
|
|
|
|
|
|
NIX_CFLAGS_COMPILE = "-fPIC -lgtk-x11-2.0 -lglib-2.0 -lgobject-2.0 -lz";
|
2007-10-29 11:52:04 +01:00
|
|
|
|
2009-03-30 09:33:31 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = mirror://sourceforge/audacity/audacity-fullsrc-1.3.7.tar.bz2;
|
2009-05-12 06:26:22 +02:00
|
|
|
sha256 = "0b4arafpdyjjk52l6n7aw518hzm65iv9w5g39jqr2bmvn6a9qivi";
|
2009-03-30 09:33:31 +02:00
|
|
|
};
|
2009-05-12 06:26:22 +02:00
|
|
|
buildInputs = [ wxGTK pkgconfig gettext gtk glib zlib intltool perl
|
|
|
|
libogg libvorbis libmad];
|
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+";
|
2007-10-29 11:52:04 +01:00
|
|
|
};
|
|
|
|
}
|