Unverified Commit 133cc778 authored by Leona Maroni's avatar Leona Maroni Committed by GitHub
Browse files

scantailor-universal: fix build with cmake4 (#451894)

parents abc9f7ae 836d7ab2
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  cmake,
  libsForQt5,
  zlib,
@@ -25,6 +26,20 @@ stdenv.mkDerivation rec {
    hash = "sha256-n8NbokK+U0FAuYXtjRJcxlI1XAmI4hk5zV3sF86hB/s=";
  };

  patches = [
    # Bump CMAKE_MINIMUM_REQUIRED
    (fetchpatch {
      url = "https://github.com/trufanov-nok/scantailor-universal/commit/f90b1c6bb2954ca5c4d0c5b310f359c522fe538c.patch?full_index=1";
      hash = "sha256-c/mynpM4XNbQ6TcxzZvwwujnfwwA1TPogNU9393gcY4=";
    })
    # Remove outdated CMP0043 policy
    (fetchpatch {
      url = "https://github.com/trufanov-nok/scantailor-universal/commit/248fdf0fc2dc014d76d4ec9e27a7ad340ff7aaf5.patch?full_index=1";
      hash = "sha256-xK0hNr6YHgMK4fghc07CTRwcsizTsnGSdDwqcUf9wsY=";
    })

  ];

  buildInputs = [
    libsForQt5.qtbase
    zlib