fasttext: fix build with cmake 4 (#448808)

This commit is contained in:
Franz Pletz
2025-10-05 13:48:30 +00:00
committed by GitHub
+10
View File
@@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
fetchurl,
cmake,
}:
@@ -16,6 +17,15 @@ stdenv.mkDerivation {
hash = "sha256-lSIah4T+QqZwCRpeI3mxJ7PZT6pSHBO26rcEFfK8DSk=";
};
patches = [
# Fix build with CMake 4
# Upstream repo is archived, so we take a patch from Debian
(fetchurl {
url = "https://salsa.debian.org/science-team/fasttext/-/raw/b2a0e52d302b32b6786b1a8fb9c0b21ca23e2be9/debian/patches/fix-ftbfs-cmake4.patch";
hash = "sha256-I5w+/4SNyp2FtHGYBWU2Fi76vmJpG4nbgsb0akVddAs=";
})
];
nativeBuildInputs = [ cmake ];
meta = with lib; {