From 5b6e3a3ed15289f45fd72b8f5d2c12c1a0a66433 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Fri, 15 Jul 2016 21:29:15 +0200 Subject: [PATCH] pencil: mark as broken Currently pencil won't start, due to incompatible firefox version: $ pencil Error: Platform version '47.0.1' is not compatible with minVersion >= 36.0 See https://github.com/prikhi/pencil/issues/840. --- pkgs/applications/graphics/pencil/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix index 80774fba5ff..7d9b77e9661 100644 --- a/pkgs/applications/graphics/pencil/default.nix +++ b/pkgs/applications/graphics/pencil/default.nix @@ -32,5 +32,8 @@ stdenv.mkDerivation rec { license = licenses.gpl2; # Commercial license is also available maintainers = with maintainers; [ bjornfor prikhi ]; platforms = platforms.linux; + # See https://github.com/prikhi/pencil/issues/840 + # ("Error: Platform version '47.0' is not compatible with minVersion >= 36.0 maxVersion <= 46.*") + broken = true; }; }