lol

Merge pull request #267092 from trofi/xtuner-zhf

xtuner: pull upstream fix for glibc-2.38

authored by

Peder Bergebakken Sundt and committed by
GitHub
3620d649 65d0a439

+12
+12
pkgs/applications/audio/xtuner/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchFromGitHub 3 + , fetchpatch 3 4 , pkg-config 4 5 , cairo 5 6 , libX11 ··· 21 22 sha256 = "1i5chfnf3hcivwzni9z6cn9pb68qmwsx8bf4z7d29a5vig8kbhrv"; 22 23 fetchSubmodules = true; 23 24 }; 25 + 26 + patches = [ 27 + # Fix build against glibc-2.38. 28 + (fetchpatch { 29 + name = "glibc-2.38.patch"; 30 + url = "https://github.com/brummer10/libxputty/commit/7eb70bf3f7bce0af9e1919d6c875cdb8efca734e.patch"; 31 + hash = "sha256-VspR0KJjBt4WOrnlo7rHw1oAYM1d2RSz6JhuAEfsO3M="; 32 + stripLen = 1; 33 + extraPrefix = "libxputty/"; 34 + }) 35 + ]; 24 36 25 37 nativeBuildInputs = [ pkg-config ]; 26 38 buildInputs = [ cairo libX11 libjack2 liblo libsigcxx zita-resampler fftwFloat ];