We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gcc-15
2 parents 2e6ec46 + 1c3ca1b commit 260e442Copy full SHA for 260e442
1 file changed
pkgs/by-name/al/alttab/package.nix
@@ -3,6 +3,7 @@
3
stdenv,
4
coreutils,
5
fetchFromGitHub,
6
+ fetchpatch,
7
autoconf,
8
automake,
9
pkg-config,
@@ -35,6 +36,15 @@ stdenv.mkDerivation (finalAttrs: {
35
36
sha256 = "sha256-1+hk0OeSriXPyefv3wOgeiW781PL4VP5Luvt+RS5jmg=";
37
};
38
39
+ patches = [
40
+ # Fix gcc-15 build failure: https://github.com/sagb/alttab/pull/178
41
+ (fetchpatch {
42
+ name = "gcc-15.patch";
43
+ url = "https://github.com/sagb/alttab/commit/665e3e369f74ab0075c22a46a3cb3a9f76bdd762.patch";
44
+ hash = "sha256-7l74kXs0bAyozBbgOEzDSY+4NE2pjdVfWda0XiPvCz4=";
45
+ })
46
+ ];
47
+
48
nativeBuildInputs = [
49
autoconf
50
automake
0 commit comments