lsp-plugins: apply patch "Fix aarch64 msmatrix code" (#274504)

This fixes a critical issue in the dsp code path used on Apple Silicon machines
This commit is contained in:
Yureka 2023-12-16 00:06:12 +01:00 committed by GitHub
parent 5a836e74a4
commit 386647bebf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, pkg-config, makeWrapper
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, makeWrapper
, libsndfile, jack2
, libGLU, libGL, lv2, cairo
, ladspaH, php, libXrandr }:
@ -11,6 +11,14 @@ stdenv.mkDerivation rec {
url = "https://github.com/sadko4u/${pname}/releases/download/${version}/${pname}-src-${version}.tar.gz";
sha256 = "sha256-eJO+1fCNzqjTdGrPlhIrHc3UimkJOydRqTq49IN+Iwo=";
};
patches = [
(fetchpatch {
url = "https://github.com/lsp-plugins/lsp-dsp-lib/commit/58c3f985f009c84347fa91236f164a9e47aafa93.patch";
stripLen = 1;
extraPrefix = "modules/lsp-dsp-lib/";
hash = "sha256-pCLucLijXOgp69xNjSRCRxgVoQziT0YiHLnQGbkefqE=";
})
];
outputs = [ "out" "dev" "doc" ];