From c44749debf49549417a964786fe680bb91dff2d3 Mon Sep 17 00:00:00 2001 From: Alexandre Esteves Date: Fri, 4 Apr 2025 23:17:16 +0100 Subject: [PATCH] haskellPackages.taskwarrior: fix bounds error --- pkgs/development/haskell-modules/configuration-common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 6ed2a1874d01..09176637f294 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2675,6 +2675,14 @@ self: super: { ''; }) super.feedback; + # https://github.com/maralorn/haskell-taskwarrior/pull/12 + taskwarrior = appendPatches [ + (fetchpatch { + url = "https://github.com/maralorn/haskell-taskwarrior/commit/b846c6ae64e716dca2d44488f60fee3697b5322d.patch"; + sha256 = "sha256-fwBYBmw9Jva2UEPQ6E/5/HBA8ZDiM7/QQQDBp3diveU="; + }) + ] super.taskwarrior; + testcontainers = lib.pipe super.testcontainers [ dontCheck # Tests require docker doJailbreak # https://github.com/testcontainers/testcontainers-hs/pull/58