From cafef48cf6bdcbbb64823f2b93ea06686e812fcc Mon Sep 17 00:00:00 2001 From: Will Leinweber Date: Fri, 11 Oct 2024 15:56:53 +0200 Subject: [PATCH] tijolo: mark as broken While updating crystal for 1.14 this project breaks with In src/code_language.cr:46:18 46 | mime = Gio.content_type_guess(file.to_s, contents[0, contents_size]) ^----------------- Error: wrong number of arguments for 'Gio.content_type_guess' (given 2, expected 4) Overloads are: - Gio.content_type_guess(filename : ::String, data : Pointer(UInt8), data_size : UInt64, result_uncertain : Pointer(Bool)) --- pkgs/applications/editors/tijolo/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/editors/tijolo/default.nix b/pkgs/applications/editors/tijolo/default.nix index 54f0f154ab37..49c58a2f9010 100644 --- a/pkgs/applications/editors/tijolo/default.nix +++ b/pkgs/applications/editors/tijolo/default.nix @@ -53,5 +53,6 @@ crystal.buildCrystalPackage rec { license = licenses.mit; mainProgram = "tijolo"; maintainers = with maintainers; [ sund3RRR ]; + broken = true; }; }