diff options
author | Karel Kočí <cynerd@email.cz> | 2023-03-23 12:32:11 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-03-23 12:32:11 +0100 |
commit | 312b056af6b850ff9527153a27a7a3674c390c65 (patch) | |
tree | 45795859482471353e613afece69161883b87713 /pkgs | |
parent | 2dbccc394a4964a2a3badd192184b6d35dd63336 (diff) | |
download | nixos-personal-312b056af6b850ff9527153a27a7a3674c390c65.tar.gz nixos-personal-312b056af6b850ff9527153a27a7a3674c390c65.tar.bz2 nixos-personal-312b056af6b850ff9527153a27a7a3674c390c65.zip |
pkgs: hack the build of the khal
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 29 |
1 files changed, 29 insertions, 0 deletions
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 |