From 6986b50df9466b95a81eaf8020585e2bf2c23f81 Mon Sep 17 00:00:00 2001 From: Raphael Robatsch Date: Thu, 12 Jan 2023 09:45:38 +0100 Subject: [PATCH] llpp: mark as broken See discussion in #188525 --- pkgs/applications/misc/llpp/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/misc/llpp/default.nix b/pkgs/applications/misc/llpp/default.nix index 7004d0dce34f..b1d3a5c0d6fc 100644 --- a/pkgs/applications/misc/llpp/default.nix +++ b/pkgs/applications/misc/llpp/default.nix @@ -51,6 +51,9 @@ stdenv.mkDerivation rec { homepage = "https://repo.or.cz/w/llpp.git"; description = "A MuPDF based PDF pager written in OCaml"; platforms = platforms.linux; + # Project is unmaintained and fails to build: + # link.c:987:27: error: invalid operands to binary >= (have 'fz_location' and 'int') + broken = true; maintainers = with maintainers; [ pSub ]; license = licenses.gpl3; };