From f85b49ff197237d80af2d80a121f6d290be7f1ee Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Mon, 28 Mar 2022 18:59:29 +0200 Subject: [PATCH] vaultenv: provide aeson 1.5.6.0 --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 8c2e5c32df13..7b20d8f8a8f5 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2605,4 +2605,10 @@ self: super: { # https://github.com/zellige/hs-geojson/issues/29 geojson = dontCheck super.geojson; + # Doesn't support aeson >= 2.0 + # https://github.com/channable/vaultenv/issues/118 + vaultenv = super.vaultenv.overrideScope (self: super: { + aeson = self.aeson_1_5_6_0; + }); + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super