diskscan: fix cmake-4 build failure (#458258)

This commit is contained in:
dotlambda
2025-11-04 06:36:31 +00:00
committed by GitHub
+11
View File
@@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
cmake,
ncurses,
zlib,
@@ -18,6 +19,16 @@ stdenv.mkDerivation rec {
sha256 = "sha256-2y1ncPg9OKxqImBN5O5kXrTsuwZ/Cg/8exS7lWyZY1c=";
};
patches = [
# cmake-4 support:
# https://github.com/baruch/diskscan/pull/77
(fetchpatch {
name = "cmake-4.patch";
url = "https://github.com/baruch/diskscan/commit/6e342469dcab32be7a33109a4d394141d5c905b5.patch";
hash = "sha256-05ctYPmGWTJRUc4aN35fvb0ITwIZlQdIweH7tSQ0RjA=";
})
];
buildInputs = [
ncurses
zlib