mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
tony: fix build with GCC 12 (#222095)
This commit is contained in:
parent
18b17c58dc
commit
83c26b693c
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, wrapQtAppsHook
|
||||
{ lib, stdenv, fetchurl, fetchpatch2, pkg-config, wrapQtAppsHook
|
||||
, alsa-lib, boost, bzip2, fftw, fftwFloat, libX11, libfishsound, libid3tag
|
||||
, libjack2, liblo, libmad, libogg, liboggz, libpulseaudio, libsamplerate
|
||||
, libsndfile, lrdf, opusfile, qtbase, qtsvg, rubberband, serd, sord
|
||||
@ -13,6 +13,22 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "03g2bmlj08lmgvh54dyd635xccjn730g4wwlhpvsw04bffz8b7fp";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch2 {
|
||||
url = "https://github.com/sonic-visualiser/svcore/commit/5a7b517e43b7f0b3f03b7fc3145102cf4e5b0ffc.patch";
|
||||
stripLen = 1;
|
||||
extraPrefix = "svcore/";
|
||||
sha256 = "sha256-DOCdQqCihkR0g/6m90DbJxw00QTpyVmFzCxagrVWKiI=";
|
||||
})
|
||||
(fetchpatch2 {
|
||||
url = "https://github.com/sonic-visualiser/svgui/commit/5b6417891cff5cc614e8c96664d68674eb12b191.patch";
|
||||
stripLen = 1;
|
||||
extraPrefix = "svgui/";
|
||||
excludes = [ "svgui/widgets/CSVExportDialog.cpp" ];
|
||||
sha256 = "sha256-pBCtoMXgjreUm/D0pl6+R9x1Ovwwwj8Ohv994oMX8XA=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ pkg-config wrapQtAppsHook ];
|
||||
|
||||
buildInputs = [
|
||||
|
Loading…
Reference in New Issue
Block a user