mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
a3c07f5e9e
It would be probably better to actually update the package. /cc maintainer @the-kenny.
47 lines
1.5 KiB
Nix
47 lines
1.5 KiB
Nix
{ stdenv, fetchurl, wxGTK, pkgconfig, gettext, gtk, glib, zlib, perl, intltool,
|
|
libogg, libvorbis, libmad, alsaLib, libsndfile, soxr, flac, lame,
|
|
expat, libid3tag, ffmpeg, soundtouch /*, portaudio - given up fighting their portaudio.patch */
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.0.5";
|
|
name = "audacity-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://audacity.googlecode.com/files/audacity-minsrc-${version}.tar.xz";
|
|
sha256 = "0y9bvc3a3zxsk31yg7bha029mzkjiw5i9m86kbyj7x8ps0fm91z2";
|
|
};
|
|
|
|
# fix with gcc-5 from http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2012-December/245884.html
|
|
postPatch = ''
|
|
substituteInPlace lib-src/libnyquist/nyquist/ffts/src/fftlib.c \
|
|
--replace 'inline void' 'static inline void'
|
|
'';
|
|
|
|
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,libnyquist} lib-src/
|
|
rm -r lib-src-rm/
|
|
'';
|
|
|
|
configureFlags = "--with-libsamplerate";
|
|
|
|
buildInputs = [
|
|
pkgconfig gettext wxGTK gtk expat alsaLib
|
|
libsndfile soxr libid3tag
|
|
ffmpeg libmad lame libvorbis flac soundtouch
|
|
]; #ToDo: detach sbsms
|
|
|
|
dontDisableStatic = true;
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Sound editor with graphical UI";
|
|
homepage = http://audacity.sourceforge.net;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.the-kenny ];
|
|
};
|
|
}
|