easyeffects 7.0.4 -> 7.0.5 https://repology.org/project/easyeffects/versions attrpath: easyeffects Checking auto update branch... No auto update branch exists Old version 7.0.4" not present in master derivation file with contents: { lib , stdenv , desktop-file-utils , fetchFromGitHub , calf , fftw , fftwFloat , fmt_9 , glib , gsl , gtk4 , itstool , libadwaita , libbs2b , libebur128 , libsamplerate , libsigcxx30 , libsndfile , lilv , lsp-plugins , lv2 , mda_lv2 , meson , ninja , nlohmann_json , pipewire , pkg-config , rnnoise , rubberband , speexdsp , tbb , wrapGAppsHook4 , zam-plugins , zita-convolver , soundtouch }: stdenv.mkDerivation rec { pname = "easyeffects"; version = "7.0.5"; src = fetchFromGitHub { owner = "wwmm"; repo = "easyeffects"; rev = "v${version}"; hash = "sha256-Z/0O8dVZ3J901OdOc1wF1XibNE/33b8oSqY6RKPDfzg="; }; nativeBuildInputs = [ desktop-file-utils itstool meson ninja pkg-config wrapGAppsHook4 ]; buildInputs = [ fftw fftwFloat fmt_9 glib gsl gtk4 libadwaita libbs2b libebur128 libsamplerate libsigcxx30 libsndfile lilv lv2 nlohmann_json pipewire rnnoise rubberband soundtouch speexdsp tbb zita-convolver ]; preFixup = let lv2Plugins = [ calf # compressor exciter, bass enhancer and others lsp-plugins # delay, limiter, multiband compressor mda_lv2 # loudness zam-plugins # maximizer ]; ladspaPlugins = [ rubberband # pitch shifting ]; in '' gappsWrapperArgs+=( --set LV2_PATH "${lib.makeSearchPath "lib/lv2" lv2Plugins}" --set LADSPA_PATH "${lib.makeSearchPath "lib/ladspa" ladspaPlugins}" ) ''; separateDebugInfo = true; meta = with lib; { description = "Audio effects for PipeWire applications."; homepage = "https://github.com/wwmm/easyeffects"; license = licenses.gpl3Plus; maintainers = with maintainers; [ ]; platforms = platforms.linux; }; }