audacity 3.2.4 -> 3.2.5 https://repology.org/metapackage/audacity/versions attrpath: audacity Checking auto update branch... No auto update branch exists Old version 3.2.4" not present in master derivation file with contents: { stdenv , lib , fetchFromGitHub , fetchpatch , cmake , makeWrapper , wrapGAppsHook , pkg-config , python3 , gettext , file , libvorbis , libmad , libjack2 , lv2 , lilv , mpg123 , serd , sord , sqlite , sratom , suil , libsndfile , soxr , flac , lame , twolame , expat , libid3tag , libopus , libuuid , ffmpeg_4 , soundtouch , pcre , portaudio # given up fighting their portaudio.patch? , portmidi , linuxHeaders , alsa-lib , at-spi2-core , dbus , libepoxy , libXdmcp , libXtst , libpthreadstubs , libsbsms_2_3_0 , libselinux , libsepol , libxkbcommon , util-linux , wavpack , wxGTK32 , gtk3 , libpng , libjpeg , AppKit , CoreAudioKit }: # TODO # 1. detach sbsms stdenv.mkDerivation rec { pname = "audacity"; version = "3.2.5"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "Audacity-${version}"; hash = "sha256-tMz55fZh+TfvLEyApDqC0QMd2hEQLJsNQ6y2Xy0xgaQ="; }; postPatch = '' mkdir src/private '' + lib.optionalString stdenv.isLinux '' substituteInPlace libraries/lib-files/FileNames.cpp \ --replace /usr/include/linux/magic.h ${linuxHeaders}/include/linux/magic.h ''; nativeBuildInputs = [ cmake gettext pkg-config python3 makeWrapper wrapGAppsHook ] ++ lib.optionals stdenv.isLinux [ linuxHeaders ]; buildInputs = [ expat ffmpeg_4 file flac ] ++ lib.optionals stdenv.isDarwin [ AppKit ] ++ [ gtk3 lame libid3tag libjack2 libmad libopus libsbsms_2_3_0 libsndfile libvorbis lilv lv2 mpg123 pcre portmidi serd sord soundtouch soxr sqlite sratom suil twolame portaudio wavpack wxGTK32 ] ++ lib.optionals stdenv.isLinux [ alsa-lib # for portaudio at-spi2-core dbus libepoxy libXdmcp libXtst libpthreadstubs libxkbcommon libselinux libsepol libuuid util-linux ] ++ lib.optionals stdenv.isDarwin [ CoreAudioKit # for portaudio libpng libjpeg ]; cmakeFlags = [ "-DAUDACITY_BUILD_LEVEL=2" "-DAUDACITY_REV_LONG=nixpkgs" "-DAUDACITY_REV_TIME=nixpkgs" "-DDISABLE_DYNAMIC_LOADING_FFMPEG=ON" "-Daudacity_conan_enabled=Off" "-Daudacity_use_ffmpeg=loaded" "-Daudacity_has_vst3=Off" # RPATH of binary /nix/store/.../bin/... contains a forbidden reference to /build/ "-DCMAKE_SKIP_BUILD_RPATH=ON" ]; # [ 57%] Generating LightThemeAsCeeCode.h... # ../../utils/image-compiler: error while loading shared libraries: # lib-theme.so: cannot open shared object file: No such file or directory preBuild = '' export LD_LIBRARY_PATH=$PWD/utils ''; doCheck = false; # Test fails # Replace audacity's wrapper, to: # - put it in the right place, it shouldn't be in "$out/audacity" # - Add the ffmpeg dynamic dependency postInstall = lib.optionalString stdenv.isLinux '' wrapProgram "$out/bin/audacity" \ --prefix LD_LIBRARY_PATH : "$out/lib/audacity":${lib.makeLibraryPath [ ffmpeg_4 ]} \ --suffix AUDACITY_MODULES_PATH : "$out/lib/audacity/modules" \ --suffix AUDACITY_PATH : "$out/share/audacity" '' + lib.optionalString stdenv.isDarwin '' mkdir -p $out/{Applications,bin} mv $out/Audacity.app $out/Applications/ makeWrapper $out/Applications/Audacity.app/Contents/MacOS/Audacity $out/bin/audacity ''; meta = with lib; { description = "Sound editor with graphical UI"; homepage = "https://www.audacityteam.org"; changelog = "https://github.com/audacity/audacity/releases"; license = with licenses; [ gpl2Plus # Must be GPL3 when building with "technologies that require it, # such as the VST3 audio plugin interface". # https://github.com/audacity/audacity/discussions/2142. gpl3 # Documentation. cc-by-30 ]; maintainers = with maintainers; [ lheckemann veprbl wegank ]; platforms = platforms.unix; }; }