From c701b5787b6b9c70e3e52768220e920490c58f4d Mon Sep 17 00:00:00 2001 From: Alexandre Esteves Date: Sat, 27 Jul 2024 07:58:07 +0100 Subject: [PATCH] haskellPackages.proto3-suite: fix build --- pkgs/development/haskell-modules/configuration-common.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1ec1d5d344511..715f71df5eccb 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -3099,4 +3099,11 @@ self: super: { '' + (drv.postPatch or ""); }) (doJailbreak (addExtraLibrary pkgs.pkg-config (addExtraLibrary pkgs.poppler super.pdftotext))); + # 2024-07-27: building test component requires non-trivial custom build steps + # https://github.com/awakesecurity/proto3-suite/blob/bec9d40e2767143deed5b2d451197191f1d8c7d5/nix/overlays/haskell-packages.nix#L311 + proto3-suite = lib.pipe super.proto3-suite [ + dontCheck # Hackage release trails a good deal behind master + doJailbreak + ]; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super