From 444c0d020667c150d4fd6231a49d8b8fb01e9502 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sat, 26 Nov 2022 23:46:56 +0100 Subject: [PATCH] haskellPackages.purenix: adjust override for pure purescript dep Before, purenix relied on purescript-*st which is no longer the case. It now depends on the main purescript package and needs to inherit its overrides. --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index beb4e73d1863..d65abaae75b4 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2610,7 +2610,7 @@ in { purescript-ast = purescriptStOverride super.purescript-ast; - purenix = purescriptStOverride super.purenix; + purenix = super.purenix.overrideScope purescriptOverlay; # 2022-11-05: https://github.com/ysangkok/haskell-tzdata/issues/3 tzdata = dontCheck super.tzdata;