From 94d1dd4e777d28cf9841799c0710981be6a6fa7c Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 17 Jul 2022 15:53:23 +0200 Subject: [PATCH] haskellPackages.regex-compat-tdfa: fix arg order in override --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 07762d793904..a209ea836225 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2394,11 +2394,11 @@ self: super: { # https://hub.darcs.net/shelarcy/regex-compat-tdfa/issue/3 regex-compat-tdfa = appendPatches [ ./patches/regex-compat-tdfa-ghc-9.0.patch - ] (overrideCabal super.regex-compat-tdfa { + ] (overrideCabal { # Revision introduces bound base < 4.15 revision = null; editedCabalFile = null; - }); + } super.regex-compat-tdfa); # https://github.com/kowainik/validation-selective/issues/64 validation-selective = doJailbreak super.validation-selective;