tasksh: add cmakeFlags for CMake >= 3.5

Resolves #451335

Signed-off-by: Ludovico Piero <lewdovico@gnuweeb.org>
This commit is contained in:
Ludovico Piero
2025-10-12 22:11:29 +09:00
parent f080591540
commit f6b4bf1e96

View File

@@ -18,6 +18,11 @@ stdenv.mkDerivation rec {
buildInputs = [ readline ];
nativeBuildInputs = [ cmake ];
cmakeFlags = [
# Fix the build with CMake 4.
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5"
];
meta = with lib; {
description = "REPL for taskwarrior";
homepage = "http://tasktools.org";