haskellPackages.update-nix-fetchgit: Disable checks

This commit is contained in:
maralorn 2023-06-26 23:16:54 +02:00
parent 8ab0ccf96e
commit 61dd345bfe
No known key found for this signature in database

View file

@ -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 [