haskellPackages.hadolint: fix build by disabling static linking

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

  https://github.com/hadolint/hadolint/commit/e1305042c62d52c2af4d77cdce5d62f6a0a3ce7b#diff-e0ee4e21f8811c1171864cc68ea4005347b1b0ca70626026f251bf4111c2aa6e

We need to disable it in nixpkgs.
This commit is contained in:
Olli Helenius
2021-02-19 20:56:32 +01:00
committed by Peter Simons
parent 18e82ca47a
commit d9443bf7cd
@@ -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";
}