add eq10q: LV2 EQ plugins and more, with 64 bit processing

+39
+37
pkgs/applications/audio/eq10q/default.nix
··· 1 + { stdenv, fetchurl, cmake, fftw, gtkmm, libxcb, lv2, pkgconfig, xlibs }: 2 + stdenv.mkDerivation rec { 3 + name = "eq10q-2-${version}"; 4 + version = "beta7.1"; 5 + src = fetchurl { 6 + url = "http://downloads.sourceforge.net/project/eq10q/${name}.tar.gz"; 7 + sha256 = "1jmrcx4jlx8kgsy5n4jcxa6qkjqvx7d8l2p7dsmw4hj20s39lgyi"; 8 + }; 9 + 10 + buildInputs = [ cmake fftw gtkmm libxcb lv2 pkgconfig xlibs.libpthreadstubs xlibs.libXdmcp xlibs.libxshmfence ]; 11 + 12 + installFlags = '' 13 + DESTDIR=$(out) 14 + ''; 15 + 16 + fixupPhase = '' 17 + cp -r $out/var/empty/local/lib $out 18 + rm -R $out/var 19 + ''; 20 + 21 + meta = { 22 + description = "LV2 EQ plugins and more, with 64 bit processing"; 23 + longDescription = '' 24 + Up to 10-Bands parametric equalizer with mono and stereo versions. 25 + Versatile noise-gate plugin with mono and stereo versions. 26 + Compressor plugin with mono and stereo versions. 27 + BassUp plugin - Enhanceing the bass guitar sound or other low frequency sounding instruments. 28 + Improved high frequency response for peaking filter (in equalizers). 29 + 64 bits floating point internal audio processing. 30 + Nice GUI with powerful metering for every plugin. 31 + ''; 32 + homepage = http://eq10q.sourceforge.net/; 33 + license = stdenv.lib.licenses.gpl3; 34 + maintainers = [ stdenv.lib.maintainers.magnetophon ]; 35 + platforms = stdenv.lib.platforms.linux; 36 + }; 37 + }
+2
pkgs/top-level/all-packages.nix
··· 10890 10890 10891 10891 inherit (gnome3) epiphany; 10892 10892 10893 + eq10q = callPackage ../applications/audio/eq10q { }; 10894 + 10893 10895 espeak = callPackage ../applications/audio/espeak { }; 10894 10896 10895 10897 espeakedit = callPackage ../applications/audio/espeak/edit.nix { };