Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

qcomicbook: fix build issue with CMake 4 (#451544)

authored by dotlambda and committed by GitHub 662e2ea0 a1946910

Changed files
+10
pkgs
by-name
qc
qcomicbook
+10
pkgs/by-name/qc/qcomicbook/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + fetchpatch, 5 6 cmake, 6 7 pkg-config, 7 8 libsForQt5, ··· 17 18 rev = version; 18 19 sha256 = "1b769lp6gfwds4jb2g7ymhdm9c06zg57zpyz3zpdb40w07zfsjzv"; 19 20 }; 21 + 22 + patches = [ 23 + # https://github.com/stolowski/QComicBook/pull/45 24 + (fetchpatch { 25 + name = "cmake-4-compatibility.patch"; 26 + url = "https://github.com/stolowski/QComicBook/commit/424a188f63171842ce8fad86fa85c4e03e405618.patch?full_index=1"; 27 + hash = "sha256-q0X2i21JgtBfRfyMGpuUyB9GtIiWiFo6IWME6EBMSwk="; 28 + }) 29 + ]; 20 30 21 31 nativeBuildInputs = [ 22 32 cmake