lol

Merge pull request #93761 from raboof/audacity-2.4.1-to-2.4.2

audacity: 2.4.1 -> 2.4.2

authored by

Maximilian Bosch and committed by
GitHub
0bf86fb4 0eef66ab

+9 -15
+9 -15
pkgs/applications/audio/audacity/default.nix
··· 1 - { stdenv, fetchzip, wxGTK30, pkgconfig, file, gettext, 1 + { stdenv, fetchzip, wxGTK31, pkgconfig, file, gettext, 2 2 libvorbis, libmad, libjack2, lv2, lilv, serd, sord, sratom, suil, alsaLib, libsndfile, soxr, flac, lame, 3 3 expat, libid3tag, ffmpeg_3, soundtouch, /*, portaudio - given up fighting their portaudio.patch */ 4 - autoconf, automake, libtool 4 + pcre, vamp-plugin-sdk, portmidi, twolame, git, 5 + cmake, libtool 5 6 }: 6 7 7 8 with stdenv.lib; 8 9 9 10 stdenv.mkDerivation rec { 10 - version = "2.4.1"; 11 + version = "2.4.2"; 11 12 pname = "audacity"; 12 13 13 14 src = fetchzip { 14 15 url = "https://github.com/audacity/audacity/archive/Audacity-${version}.tar.gz"; 15 - sha256 = "1xk0piv72d2xd3p7igr916fhcbrm76fhjr418k1rlqdzzg1hfljn"; 16 + sha256 = "0lklcvqkxrr2gkb9gh3422iadzl2rv9v0a8s76rwq43lj2im7546"; 16 17 }; 17 18 18 - preConfigure = /* we prefer system-wide libs */ '' 19 - autoreconf -vi # use system libraries 20 - 21 - # we will get a (possibly harmless) warning during configure without this 22 - substituteInPlace configure \ 23 - --replace /usr/bin/file ${file}/bin/file 24 - ''; 25 - 26 19 configureFlags = [ 27 20 "--with-libsamplerate" 28 21 ]; ··· 43 36 "-lswscale" 44 37 ]; 45 38 46 - nativeBuildInputs = [ pkgconfig autoconf automake libtool ]; 39 + nativeBuildInputs = [ pkgconfig cmake libtool git ]; 47 40 buildInputs = [ 48 - file gettext wxGTK30 expat alsaLib 49 - libsndfile soxr libid3tag libjack2 lv2 lilv serd sord sratom suil wxGTK30.gtk 41 + file gettext wxGTK31 expat alsaLib 42 + libsndfile soxr libid3tag libjack2 lv2 lilv serd sord sratom suil wxGTK31.gtk 50 43 ffmpeg_3 libmad lame libvorbis flac soundtouch 44 + pcre vamp-plugin-sdk portmidi twolame 51 45 ]; #ToDo: detach sbsms 52 46 53 47 enableParallelBuilding = true;