From 279a69aaf17a3451c5ce98fc26788aa9d3c47baa Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 13 Jul 2022 22:05:14 +0200 Subject: [PATCH] hadolint: build with language-docker 11.0.0 This is required starting with hadolint 2.11.0. --- pkgs/development/haskell-modules/configuration-common.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9fcc2de41750..7047c7d7204a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2222,9 +2222,10 @@ self: super: { # file revision on hackage was gifted CRLF line endings gogol-core = appendPatch ./patches/gogol-core-144.patch super.gogol-core; - # Too strict bound on deepseq - # https://github.com/hadolint/hadolint/issues/800 - hadolint = doJailbreak super.hadolint; + # Stackage LTS 19 still has 10.* + hadolint = super.hadolint.override { + language-docker = self.language-docker_11_0_0; + }; nix-tree = super.nix-tree;