Update vcv to gcc11
This commit is contained in:
parent
b92347c93b
commit
b336b07296
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, lib, makeWrapper, fetchzip, fetchFromGitHub, pkgconfig
|
{ gcc11Stdenv, lib, makeWrapper, fetchzip, fetchFromGitHub, pkgconfig
|
||||||
, alsaLib, curl, ghc_filesystem, glew, glfw, gtk3-x11, jansson, jq, libarchive
|
, alsaLib, curl, ghc_filesystem, glew, glfw, gtk3-x11, jansson, jq, libarchive
|
||||||
, libjack2, libpulseaudio, libXext, libXi, rtaudio, rtmidi, speex
|
, libjack2, libpulseaudio, libXext, libXi, rtaudio, rtmidi, speex
|
||||||
, libsamplerate, zstd }:
|
, libsamplerate, zstd }:
|
||||||
|
@ -11,7 +11,11 @@ let
|
||||||
sha256 = "QnwOgrYxiCa/7t/u6F63Ks8C9E8k6T+hia4JZFhp1LI=";
|
sha256 = "QnwOgrYxiCa/7t/u6F63Ks8C9E8k6T+hia4JZFhp1LI=";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
with lib; stdenv.mkDerivation rec {
|
# gcc11 is necessary because many vcv plugins are already built with it
|
||||||
|
# If using an older gcc for Rack, you get
|
||||||
|
# undefined symbol: _ZSt28__throw_bad_array_new_lengthv
|
||||||
|
# for those plugins which were built with v11
|
||||||
|
with lib; gcc11Stdenv.mkDerivation rec {
|
||||||
pname = "VCV-Rack";
|
pname = "VCV-Rack";
|
||||||
version = "2";
|
version = "2";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue