magnetophonDSP.MBdistortion: fix build

Apply upstream patch fixing the issue observed in nixpkgs previously.
Resolves #114854. Thanks to Marek Fajkus for fixing this up and
reporting back.

authored by sternenseemann and committed by tomberek be003e3a ffd8ff10

+8 -1
+8 -1
pkgs/applications/audio/magnetophonDSP/MBdistortion/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, faust2jaqt, faust2lv2 }: 2 stdenv.mkDerivation rec { 3 pname = "MBdistortion"; 4 version = "1.1.1"; ··· 9 rev = "V${version}"; 10 sha256 = "0mdzaqmxzgspfgx9w1hdip18y17hwpdcgjyq1rrfm843vkascwip"; 11 }; 12 13 buildInputs = [ faust2jaqt faust2lv2 ]; 14
··· 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, faust2jaqt, faust2lv2 }: 2 stdenv.mkDerivation rec { 3 pname = "MBdistortion"; 4 version = "1.1.1"; ··· 9 rev = "V${version}"; 10 sha256 = "0mdzaqmxzgspfgx9w1hdip18y17hwpdcgjyq1rrfm843vkascwip"; 11 }; 12 + 13 + patches = [ 14 + (fetchpatch { 15 + url = "https://github.com/magnetophon/MBdistortion/commit/10e35084b88c559f1b63760cf40fd5ef5a6745a5.patch"; 16 + sha256 = "0hwjl3rzvn3id0sr0qs8f37jdmr915mdan8miaf78ra0ir3wnk76"; 17 + }) 18 + ]; 19 20 buildInputs = [ faust2jaqt faust2lv2 ]; 21