From 3fa2e51915a5171a591bfb237ee16e5bc93a6ef7 Mon Sep 17 00:00:00 2001 From: Rafael Ieda Date: Sat, 25 Oct 2025 21:02:25 -0300 Subject: [PATCH] orthanc-plugin-dicomweb: fix build with cmake4 --- pkgs/by-name/or/orthanc-plugin-dicomweb/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/or/orthanc-plugin-dicomweb/package.nix b/pkgs/by-name/or/orthanc-plugin-dicomweb/package.nix index 97f005210d66..5670e6bf3e12 100644 --- a/pkgs/by-name/or/orthanc-plugin-dicomweb/package.nix +++ b/pkgs/by-name/or/orthanc-plugin-dicomweb/package.nix @@ -54,6 +54,9 @@ stdenv.mkDerivation (finalAttrs: { ln -s ${axios} ThirdPartyDownloads/axios-0.19.0.tar.gz ln -s ${font-awesome} ThirdPartyDownloads/Font-Awesome-4.7.0.tar.gz ln -s ${babel-polyfill} ThirdPartyDownloads/babel-polyfill-6.26.0.min.js.gz + + substituteInPlace CMakeLists.txt \ + --replace-fail "cmake_minimum_required(VERSION 2.8)" "cmake_minimum_required(VERSION 3.10)" ''; SourceRoot = "${finalAttrs.src.name}/Build";