Merge pull request #273429 from wegank/non-gcc-13

non: fix build with gcc 11+
This commit is contained in:
Nick Cao 2023-12-11 10:16:08 -05:00 committed by GitHub
commit 07c4539154
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,8 @@ stdenv.mkDerivation {
ladspaH liblo libsigcxx lrdf
];
env.CXXFLAGS = "-std=c++14";
meta = {
description = "Lightweight and lightning fast modular Digital Audio Workstation";
homepage = "http://non.tuxfamily.org";

View File

@ -24182,7 +24182,7 @@ with pkgs;
nntp-proxy = callPackage ../applications/networking/nntp-proxy { };
non = callPackage ../applications/audio/non { stdenv = gcc10StdenvCompat; };
non = callPackage ../applications/audio/non { };
ntl = callPackage ../development/libraries/ntl { };