nova-filters: bug fix and add maintainer

+6 -4
+6 -4
pkgs/applications/audio/nova-filters/default.nix
··· 16 sed -i -e '4d' SConstruct 17 sed -i "s@mfpmath=sse@mfpmath=sse -I ${boost.dev}/include@g" SConstruct 18 sed -i "s@ladspa.h@${ladspaH}/include/ladspa.h@g" filters.cpp 19 sed -i "s/= check/= detail::filter_base<internal_type, checked>::check/" nova/source/dsp/filter.hpp 20 ''; 21 ··· 27 scons $sconsFlags "prefix=$out" install 28 ''; 29 30 - meta = { 31 homepage = http://klingt.org/~tim/nova-filters/; 32 - description = "LADSPA plugins based on filters of nova"; 33 - license = stdenv.lib.licenses.gpl2Plus; 34 - platforms = stdenv.lib.platforms.linux; 35 }; 36 }
··· 16 sed -i -e '4d' SConstruct 17 sed -i "s@mfpmath=sse@mfpmath=sse -I ${boost.dev}/include@g" SConstruct 18 sed -i "s@ladspa.h@${ladspaH}/include/ladspa.h@g" filters.cpp 19 + sed -i "s@LADSPA_HINT_SAMPLE_RATE, 0, 0.5@LADSPA_HINT_SAMPLE_RATE, 0.0001, 0.5@g" filters.cpp 20 sed -i "s/= check/= detail::filter_base<internal_type, checked>::check/" nova/source/dsp/filter.hpp 21 ''; 22 ··· 28 scons $sconsFlags "prefix=$out" install 29 ''; 30 31 + meta = with stdenv.lib; { 32 + description = "LADSPA plugins based on filters of nova"; 33 homepage = http://klingt.org/~tim/nova-filters/; 34 + license = licenses.gpl2Plus; 35 + maintainers = [ maintainers.magnetophon ]; 36 + platforms = platforms.linux; 37 }; 38 }