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:
parent
5a836e74a4
commit
386647bebf
1 changed files with 9 additions and 1 deletions
|
@ -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" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue