From 309b14dfcd579b8fc0c8a796871a11648b6e1a7d Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Fri, 1 Oct 2021 19:38:14 +0200 Subject: [PATCH] haskellPackages.quic: provide correct version of network --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 972337f86838..82fc372f7b02 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2002,4 +2002,9 @@ EOT ]; }); + # Needs network >= 3.1.2 + quic = super.quic.overrideScope (self: super: { + network = self.network_3_1_2_2; + }); + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super