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.
1 parent 229c806 commit 941b943Copy full SHA for 941b943
pkgs/awesome/default.nix
@@ -53,6 +53,12 @@ in
53
postPatch = ''
54
patchShebangs tests/examples/_postprocess.lua
55
patchShebangs tests/examples/_postprocess_cleanup.lua
56
+
57
+ # Fix build with CMake 4
58
+ # https://github.com/awesomeWM/awesome/pull/4030#issuecomment-3370822668
59
+ substituteInPlace {,tests/examples/}CMakeLists.txt \
60
+ --replace-fail 'cmake_minimum_required(VERSION 3.0.0)' 'cmake_minimum_required(VERSION 3.10)' \
61
+ --replace-warn 'cmake_policy(VERSION 2.6)' 'cmake_policy(VERSION 3.10)'
62
'';
63
64
nativeBuildInputs = [
0 commit comments