We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fa569a3 + 9b3f797 commit 79ade21Copy full SHA for 79ade21
pkgs/applications/misc/ola/default.nix
@@ -15,6 +15,7 @@
15
libmicrohttpd,
16
perl,
17
python3,
18
+ fetchpatch,
19
}:
20
21
stdenv.mkDerivation rec {
@@ -27,7 +28,13 @@ stdenv.mkDerivation rec {
27
28
tag = version;
29
hash = "sha256-8w8ZT3D/+8Pxl9z2KTXeydVxE5xiPjxZevgmMFgrblU=";
30
};
-
31
+ patches = [
32
+ # Fix build error with GCC 14 due to stricter C++20 compliance (template-id in constructors)
33
+ (fetchpatch {
34
+ url = "https://github.com/OpenLightingProject/ola/commit/d9b9c78645c578adb7c07b692842e841c48310be.patch";
35
+ hash = "sha256-BplSqQv8ztWMpiX/M3/3wvf6LsPTBglh48gHlUoM6rw=";
36
+ })
37
+ ];
38
nativeBuildInputs = [
39
autoreconfHook
40
bison
0 commit comments