forked from mirrors/nixpkgs
audacity: Use soundtouch
This enables change pitch (without changing tempo) and change tempo (without changing pitch) effects.
This commit is contained in:
parent
83a5cfb260
commit
63e3ec8ce1
|
@ -1,6 +1,6 @@
|
||||||
{ 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, soxr, flac, lame,
|
libogg, libvorbis, libmad, alsaLib, libsndfile, soxr, flac, lame,
|
||||||
expat, libid3tag, ffmpeg /*, portaudio - given up fighting their portaudio.patch */
|
expat, libid3tag, ffmpeg, soundtouch /*, portaudio - given up fighting their portaudio.patch */
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -19,11 +19,13 @@ stdenv.mkDerivation rec {
|
||||||
rm -r lib-src-rm/
|
rm -r lib-src-rm/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
configureFlags = "--with-libsamplerate";
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
pkgconfig gettext wxGTK gtk expat alsaLib
|
pkgconfig gettext wxGTK gtk expat alsaLib
|
||||||
libsndfile soxr libid3tag
|
libsndfile soxr libid3tag
|
||||||
ffmpeg libmad lame libvorbis flac
|
ffmpeg libmad lame libvorbis flac soundtouch
|
||||||
]; #ToDo: soundtouch, detach sbsms
|
]; #ToDo: detach sbsms
|
||||||
|
|
||||||
dontDisableStatic = true;
|
dontDisableStatic = true;
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
Loading…
Reference in a new issue