From ac15a841cd4e151ae6ac2003d011f03d38323a53 Mon Sep 17 00:00:00 2001 From: Utku Demir Date: Sun, 14 Nov 2021 09:46:17 +1300 Subject: [PATCH] haskellPackages.nix-tree: Build with a supported brick version `nix-tree >= 0.19` requires `brick >= 0.64` which is not the default on the stackage resolver yet. This commit adds an override for the correct version. --- 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 cbd820c677bd..dd1958c3966c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2085,4 +2085,9 @@ EOT hledger-lib = self.hledger-lib_1_23; }; + # Needs brick > 0.64 + nix-tree = super.nix-tree.override { + brick = self.brick_0_64_2; + }; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super