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:
parent
1c2f36ac02
commit
ac15a841cd
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue