From 312b056af6b850ff9527153a27a7a3674c390c65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 23 Mar 2023 12:32:11 +0100 Subject: pkgs: hack the build of the khal --- pkgs/default.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'pkgs/default.nix') diff --git a/pkgs/default.nix b/pkgs/default.nix index f568186..253c07e 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -26,6 +26,35 @@ pkgs: let # Elektroline packages shvspy = callPackage ./shvspy {}; + + # Nixpkgs fixes + khal = pkgs.khal.overrideAttrs (oldAttrs: { + disabledTests = + pkgs.lib.warnIf (oldAttrs.version != "0.10.5") "Khal is updated. Check if override is still required." + oldAttrs.disabledTests + ++ [ + "test__construct_event_format_de_complexer" + "test__construct_event_format_us" + "test_alarm" + "test_berlin" + "test_berlin_rdate" + "test_construct_event_format_de" + "test_construct_event_format_de_complexer" + "test_construct_event_format_us" + "test_create_timezone_in_future" + "test_create_timezone_static" + "test_description" + "test_dt_two_tz" + "test_get" + "test_leap_year" + "test_raw_dt" + "test_repeat_floating" + "test_repeat_localized" + "test_split_ics" + "test_split_ics_random_uid" + "test_transform_event" + ]; + }); }; in personalpkgs -- cgit v1.2.3