Update Audacity
svn path=/nixpkgs/trunk/; revision=26948
This commit is contained in:
parent
8c115162c4
commit
bca9330f6d
@ -1,32 +1,27 @@
|
|||||||
{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
|
{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
|
||||||
libogg, libvorbis, libmad, alsaLib, libsndfile, libsamplerate, flac, lame,
|
libogg, libvorbis, libmad, alsaLib, libsndfile, libsamplerate, flac, lame,
|
||||||
expat, id3lib, ffmpeg
|
expat, id3lib, ffmpeg, portaudio
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.3.12";
|
version = "1.3.13";
|
||||||
name = "audacity-${version}";
|
name = "audacity-${version}";
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = "-fPIC -lgtk-x11-2.0 -lglib-2.0 -lgobject-2.0 -lz";
|
NIX_CFLAGS_COMPILE = "-fPIC -lgtk-x11-2.0 -lglib-2.0 -lgobject-2.0 -lz";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/audacity/audacity-minsrc-${version}-beta.tar.bz2";
|
url = "mirror://sourceforge/audacity/audacity-minsrc-${version}-beta.tar.bz2";
|
||||||
sha256 = "f0f55839ca3013d2e43e5114c73d195bc34503685aeab683eafca4d1bbf3b768";
|
sha256 = "4c2eda638e16e16dfddd202e86ccbe1d170b04c26cfb2c12ffcba0b79e7e1e83";
|
||||||
};
|
};
|
||||||
buildInputs = [ wxGTK pkgconfig gettext gtk glib zlib intltool perl
|
buildInputs = [ wxGTK pkgconfig gettext gtk glib zlib intltool perl
|
||||||
libogg libvorbis libmad alsaLib libsndfile libsamplerate flac lame
|
libogg libvorbis libmad alsaLib libsndfile libsamplerate flac lame
|
||||||
expat id3lib ffmpeg];
|
expat id3lib ffmpeg portaudio];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-portmixer=no"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
dontDisableStatic = true;
|
dontDisableStatic = true;
|
||||||
|
|
||||||
preBuild = ''
|
|
||||||
(cd lib-src ; make portaudio-v19/lib/libportaudio.a ; ln -sf portaudio-v19/lib/.libs/libportaudio.a portaudio-v19/lib/libportaudio.a)
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Sound editor with graphical UI";
|
description = "Sound editor with graphical UI";
|
||||||
homepage = http://audacity.sourceforge.net;
|
homepage = http://audacity.sourceforge.net;
|
||||||
|
@ -5775,7 +5775,9 @@ let
|
|||||||
|
|
||||||
audacious = callPackage ../applications/audio/audacious { };
|
audacious = callPackage ../applications/audio/audacious { };
|
||||||
|
|
||||||
audacity = callPackage ../applications/audio/audacity { };
|
audacity = callPackage ../applications/audio/audacity {
|
||||||
|
portaudio = portaudioSVN;
|
||||||
|
};
|
||||||
|
|
||||||
aumix = callPackage ../applications/audio/aumix {
|
aumix = callPackage ../applications/audio/aumix {
|
||||||
gtkGUI = false;
|
gtkGUI = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user