haskellPackages.hadolint: fix build by disabling static linking

The `static` flag was enabled by default for 1.22.1:

  e1305042c6 (diff-e0ee4e21f8811c1171864cc68ea4005347b1b0ca70626026f251bf4111c2aa6e)

We need to disable it in nixpkgs.
This commit is contained in:
Olli Helenius 2021-02-16 11:44:14 +02:00 committed by Peter Simons
parent 18e82ca47a
commit d9443bf7cd
1 changed files with 2 additions and 0 deletions

View File

@ -808,4 +808,6 @@ self: super: builtins.intersectAttrs super {
# tests depend on a specific version of solc
hevm = dontCheck (doJailbreak super.hevm);
hadolint = disableCabalFlag super.hadolint "static";
}