From b4e6152dc572e167b4b0e7f24aa6f6f482c017ef Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 24 Feb 2024 22:44:20 +0000 Subject: [PATCH] starspace: mark broken THe build fails against `zlib-1.3` in `master` as https://hydra.nixos.org/build/249158742: 3rdparty/zlib.h:1468:32: error: expected initializer before 'Z_ARG' 1468 | ZEXTERN int ZEXPORTVA gzprintf Z_ARG((gzFile file, const char *format, ...)); | ^~~~~ The upstream repository did not see updates for past 5 years and is archived. Let's schedule it for removal. --- .../science/machine-learning/starspace/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/science/machine-learning/starspace/default.nix b/pkgs/applications/science/machine-learning/starspace/default.nix index ab0c10efebce..f4ca74ef5bbf 100644 --- a/pkgs/applications/science/machine-learning/starspace/default.nix +++ b/pkgs/applications/science/machine-learning/starspace/default.nix @@ -28,6 +28,9 @@ stdenv.mkDerivation rec { ''; meta = with lib; { + # Does not build against gcc-13. No development activity upstream + # for past few years. + broken = true; description = "General-purpose neural model for efficient learning of entity embeddings"; homepage = "https://ai.facebook.com/tools/starspace/"; license = licenses.mit;