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.
This commit is contained in:
Utku Demir 2021-11-14 09:46:17 +13:00 committed by sterni
parent 1c2f36ac02
commit ac15a841cd

View file

@ -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