diff options
Diffstat (limited to 'pkgs/applications/audio/eq10q/default.nix')
-rw-r--r-- | pkgs/applications/audio/eq10q/default.nix | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/applications/audio/eq10q/default.nix b/pkgs/applications/audio/eq10q/default.nix deleted file mode 100644 index 84c8333d1857..000000000000 --- a/pkgs/applications/audio/eq10q/default.nix +++ /dev/null @@ -1,52 +0,0 @@ -{ lib, stdenv, fetchurl, fetchpatch, cmake, fftw, gtkmm2, libxcb, lv2, pkg-config -, xorg }: -stdenv.mkDerivation rec { - pname = "eq10q"; - version = "2.2"; - src = fetchurl { - url = "mirror://sourceforge/project/eq10q/${pname}-${version}.tar.gz"; - sha256 = "16mhcav8gwkp29k9ki4dlkajlcgh1i2wvldabxb046d37dq4qzrk"; - }; - - nativeBuildInputs = [ cmake pkg-config ]; - buildInputs = [ fftw gtkmm2 libxcb lv2 xorg.libpthreadstubs xorg.libXdmcp xorg.libxshmfence ]; - - patches = [ - (fetchpatch { - # glibc 2.27 compatibility - url = "https://sources.debian.org/data/main/e/eq10q/2.2~repack0-2.1/debian/patches/05-pow10.patch"; - sha256 = "07b0wf6k4xqgigv4h095bzfaw8r218wa36r9w1817jcys13r6c5r"; - }) - ]; - - postPatch = '' - # Fix build with lv2 1.18: https://sourceforge.net/p/eq10q/bugs/23/ - find . -type f -exec fgrep -q LV2UI_Descriptor {} \; \ - -exec sed -i {} -e 's/const _\?LV2UI_Descriptor/const LV2UI_Descriptor/' \; - ''; - - installFlags = [ "DESTDIR=$(out)" ]; - - fixupPhase = '' - cp -r $out/var/empty/local/lib $out - rm -R $out/var - ''; - - meta = { - broken = (stdenv.isLinux && stdenv.isAarch64); - description = "LV2 EQ plugins and more, with 64 bit processing"; - longDescription = '' - Up to 10-Bands parametric equalizer with mono and stereo versions. - Versatile noise-gate plugin with mono and stereo versions. - Compressor plugin with mono and stereo versions. - BassUp plugin - Enhanceing the bass guitar sound or other low frequency sounding instruments. - Improved high frequency response for peaking filter (in equalizers). - 64 bits floating point internal audio processing. - Nice GUI with powerful metering for every plugin. - ''; - homepage = "https://eq10q.sourceforge.net/"; - license = lib.licenses.gpl3; - maintainers = [ lib.maintainers.magnetophon ]; - platforms = lib.platforms.linux; - }; -} |