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 4ec104a commit 72bf281Copy full SHA for 72bf281
pkgs/applications/window-managers/awesome/default.nix
@@ -72,6 +72,14 @@ stdenv.mkDerivation rec {
72
})
73
];
74
75
+ # Fix build with CMake 4
76
+ # https://github.com/awesomeWM/awesome/pull/4030#issuecomment-3370822668
77
+ postPatch = ''
78
+ substituteInPlace {,tests/examples/}CMakeLists.txt \
79
+ --replace-fail 'cmake_minimum_required(VERSION 3.0.0)' 'cmake_minimum_required(VERSION 3.10)' \
80
+ --replace-warn 'cmake_policy(VERSION 2.6)' 'cmake_policy(VERSION 3.10)'
81
+ '';
82
+
83
nativeBuildInputs = [
84
cmake
85
doxygen
0 commit comments