Ruben Moor
Ruben Moor
This is how I do it in my `default.nix`: ``` let pkgs20_09 = import (pkgs.fetchFromGitHub { owner = "NixOS"; repo = "nixpkgs"; rev = "20.09"; sha256 = "1wg61h4gndm3vcprdcg7rc4s1v3jkm5xd7lw8r2f67w502y94gcy"; }) {};...
> Hi! Changes look good to me, I am just wondering what's the benefit here over using `file-embed` directly? I can't use `file-embed`. `embedFile :: FilePath -> Q Exp` requires...
I end up in the same state (no error, just stuck) by running `nix-shell -A shell.ghcjs` following the developer tutorial.
I can confirm that everything works fine on `release/0.6.2.0` and it's broken as described above on `release/0.7.0.0` and `development`
As a workaround, I added to my `default.nix`: ``` overrides = self: super: { mmorph = self.callHackage "mmorph" "1.1.3" {}; ```
I am testing this with the obelisk example (from `obelisk init`) with the following as my `default.nix` and I can confirm that it works. Having an IDE with reflex-platform is...
Using this approach with nixpkgs 20.09: ``` shellToolOverrides = self: super: { inherit (pkgs.haskell.packages.ghc865) haskell-language-server; }; ``` I get an error: Unexpected usage error can't load .so/.DLL for: /nix/store/pnd2kl27sag76h23wa5kl95a76n3k9i3-glibc-2.27/lib/librt.so (/nix/store/pnd2kl27sag76h23wa5kl95a76n3k9i3-glibc-2.27/lib/librt.so:...
Second this. This is my workaround, cf. https://github.com/reflex-frp/reflex-dom/issues/424 ``` import GHCJS.DOM.HTMLElement (focus) -- post build auto focus: the post build event happens before the element -- is mounted. postmount event...
As a workaround, I added `servant-reflex` as a local package (next to `common`) via git submodule. I have no idea, though, what's going on. My other `override`-dependency, `gerippe`, does not...
thanks! your README.md reflects that, some part of your blogpost not yet.