1. I'm trying to compile first Agda program
  2. and getting:
  3. ```[neo@nixos:~/Desktop]$ agda --compile Main.agda
  4. Calling: ghc -O -o /home/neo/Desktop/Main -Werror -i/home/neo/Desktop -main-is MAlonzo.Code.Main /home/neo/Desktop/MAlonzo/Code/Main.hs --make -fwarn-incomplete-patterns -fno-warn-overlapping-patterns
  5. [ 1 of 70] Compiling MAlonzo.RTE ( MAlonzo/RTE.hs, MAlonzo/RTE.o )
  6. Compilation error:
  7. MAlonzo/RTE.hs:11:1: error:
  8. Could not find module 'Numeric.IEEE'
  9. Use -v to see a list of the files searched for.
  10. |
  11. 11 | import Numeric.IEEE ( IEEE(identicalIEEE) )
  12. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^```
  13. according to: https://stackoverflow.com/a/49727697/750216
  14. I added ieee754 package to Nix near Agda using:
  15. haskellPackages.Agda
  16. haskellPackages.ieee754
  17. but compilation still does not see it
  18. any ideas?