Peter Becich
Peter Becich
This may be a fix; works for me: https://gist.github.com/unhammer/edd926fff70af71d1c77ed73461d55a9#file-init-haskell-el-L112-L133
The referenced instance for `StrMap`: https://github.com/paf31/purescript-foreign-generic/pull/28 Earlier attempt at instance for `Map`: https://github.com/paf31/purescript-foreign-generic/pull/29
It appears the instance for `StrMap` was replaced with an instance for `Object` (https://pursuit.purescript.org/packages/purescript-foreign-object/2.0.3/docs/Foreign.Object#t:Object): https://github.com/paf31/purescript-foreign-generic/commit/54b26dc84b07d851a83cad0fd2d477c4b8045786#diff-71732b478b4808898d86c8591ad7ab46d8122c1e4facec4a9151ac49efba905dR105 Perhaps there should be instances for https://github.com/purescript/purescript-ordered-collections (`Data.Map`, as you've said?)
@srghma , It is feasible to create a new repository in https://github.com/purescript/ or https://github.com/purescript-contrib, instead of this new organization https://github.com/purescript-open-community?
For reference, I believe this was the thread: https://discourse.purescript.org/t/javascript-conundrum-for-es6-module-in-foreign-generic/3031
https://github.com/commercialhaskell/stack/issues/4030
I see the upload error as well, in "Post Run ... magic-nix-cache-action": ``` GitHub API error: API error (429 Too Many Requests): StructuredApiError { message: "Request was blocked due to...
Thanks, https://community.flake.parts/haskell-flake/dependency#path works great. In some cases, if the `source-repository-package` is kept in `cabal.project`, it appears to cause an error in `haskell-flake`. Example: https://github.com/peterbecich/halogen-chess/tree/source-repository-example Here is the error: ``` $...
You're correct, thanks! Moving `halogen-chess.cabal` into a subdirectory fixes it: https://github.com/peterbecich/halogen-chess/tree/fix-cabal-project-in-nix/haskell by keeping `cabal.project` out of the sdist. I can't get the second solution working; these cause `infinite recursion`. I...
I'm going to try to reproduce this with the fundamental `make-package-set` functions https://github.com/NixOS/nixpkgs/blob/e35d582350f5b92c769161532a663fb7fcce74f7/pkgs/development/haskell-modules/make-package-set.nix#L552-L597 , and then find or file an issue in `nixpkgs` ---- Cabal has an `--offline` flag. Maybe...