Commit 0cb69ce5 authored by Yureka's avatar Yureka
Browse files

fasttext: fix build with cmake 4

parent 3a4c73a2
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -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; {