Dependency on the Paths_ module has been removed upstream for the next
(unreleased) version already.
Until we can update, apply the patch manually.
Resolves#347885
This has been closed and merged since v11 already - but the bounds are
still too strict.
The only way forward is to figure out how to upgrade to the latest
version.
For Cabal, using a more recent version of process is practically never
necessary since it has support for a very wide range. The process
override is a relic from when we were testing cabal-install with all GHC
versions. cabal-install(-solvers) needs directory >=1.3.7.0 which in
turn needs a recent version of process to work. Consequently, the used
Cabal version needed to use the same process version or we'd have
inconsistent dependencies when building cabal-install. Since we only
support cabal-install with GHCs that ship new enough versions of both
process and directory out of the box, we can drop these overrides.
haskellPackages.brick_0_70_1: remove at 0.70.1
taskell's upstream repository has been archived after three years of
inactivity. There also doesn't seem to be an obvious fork that provides
a suitable, maintained replacement.
No changelog entry since taskell has already been marked as broken in
24.05 from the beginning.
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```