agda.withPackages: use GHC with ieee754 as default

As mentioned in the package description of ieee on Hackage,
ieee is deprecated in favor of ieee754.
This commit is contained in:
Alexander Ben Nasrallah 2021-01-07 15:55:52 +01:00
parent b929be75dc
commit b4b4e36921
No known key found for this signature in database
GPG Key ID: DF6D22A22FA2D5A8
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ depend: standard-library
More information can be found in the [official Agda documentation on library management](https://agda.readthedocs.io/en/v2.6.1/tools/package-system.html).
## Compiling Agda
Agda modules can be compiled with the `--compile` flag. A version of `ghc` with `ieee` is made available to the Agda program via the `--with-compiler` flag.
Agda modules can be compiled with the `--compile` flag. A version of `ghc` with `ieee754` is made available to the Agda program via the `--with-compiler` flag.
This can be overridden by a different version of `ghc` as follows:
```

View File

@ -7,7 +7,7 @@ with lib.strings;
let
withPackages' = {
pkgs,
ghc ? ghcWithPackages (p: with p; [ ieee ])
ghc ? ghcWithPackages (p: with p; [ ieee754 ])
}: let
pkgs' = if builtins.isList pkgs then pkgs else pkgs self;
library-file = writeText "libraries" ''