From 61dd345bfe2340d08a588e83e0e513587e59b278 Mon Sep 17 00:00:00 2001 From: maralorn Date: Mon, 26 Jun 2023 23:16:54 +0200 Subject: [PATCH] haskellPackages.update-nix-fetchgit: Disable checks --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 97f0496afde6..c9799324d033 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1593,7 +1593,9 @@ self: super: { # so add them to build input and also wrap the resulting binary so they're in # PATH. # - Patch can be removed on next package set bump (for v0.2.11) - update-nix-fetchgit = let deps = [ pkgs.git pkgs.nix pkgs.nix-prefetch-git ]; + + # 2023-06-26: Test failure: https://hydra.nixos.org/build/225081865 + update-nix-fetchgit = dontCheck (let deps = [ pkgs.git pkgs.nix pkgs.nix-prefetch-git ]; in self.generateOptparseApplicativeCompletions [ "update-nix-fetchgit" ] (overrideCabal (drv: { buildTools = drv.buildTools or [ ] ++ [ pkgs.buildPackages.makeWrapper ]; @@ -1602,7 +1604,7 @@ self: super: { lib.makeBinPath deps }" ''; - }) (addTestToolDepends deps super.update-nix-fetchgit)); + }) (addTestToolDepends deps super.update-nix-fetchgit))); # Raise version bounds: https://github.com/idontgetoutmuch/binary-low-level/pull/16 binary-strict = appendPatches [