1
질문과 같습니다. 스택 구성이 작동하지 않습니다. ghc, 바람직하게는 8.0.2 이상에서 반사를 사용하는 프로젝트를 만들고 싶습니다. 어떻게해야합니까? 추가 deps로 지정해도 작동하지 않는 것 같습니다 ..의존성으로 reflex-frp를 사용하여 프로젝트를 빌드 할 수있는 스택 구성을 어떻게 만들 수 있습니까?
질문과 같습니다. 스택 구성이 작동하지 않습니다. ghc, 바람직하게는 8.0.2 이상에서 반사를 사용하는 프로젝트를 만들고 싶습니다. 어떻게해야합니까? 추가 deps로 지정해도 작동하지 않는 것 같습니다 ..의존성으로 reflex-frp를 사용하여 프로젝트를 빌드 할 수있는 스택 구성을 어떻게 만들 수 있습니까?
reflex
ghc 8.0.2를 지원하는 게시 된 버전이 아닌 것 같습니다. 그래서 처음에는이 시도 https://github.com/reflex-frp/reflex/compare/cc62c11a6cde31412582758c236919d4bb766ada...develop
:이 0.4 릴리스 이후 develop
분기에 많은 변화가 있습니다
resolver: lts-9.5
packages:
- .
- location:
git: https://github.com/reflex-frp/reflex
commit: 916c876
extra-dep: true
는하지만 그 주도 : 권장 조치 수익률에 따라
Error: While constructing the build plan, the following exceptions were encountered:
In the dependencies for reflex-0.5.0:
prim-uniq must match >=0.1.0.1 && <0.2, but the stack configuration has no specified version
(latest applicable is 0.1.0.1)
ref-tf must match ==0.4.*, but the stack configuration has no specified version (latest applicable is 0.4.0.1)
needed due to hmm-0.1.0.0 -> reflex-0.5.0
Recommended action: try adding the following to your extra-deps in /home/mgsloan/fpco/test-stack/stackoverflow46391975/hmm/stack.yaml:
- prim-uniq-0.1.0.1
- ref-tf-0.4.0.1
작동 구성 :
resolver: lts-9.5
packages:
- .
- location:
git: https://github.com/reflex-frp/reflex
commit: 916c876
extra-dep: true
extra-deps:
- prim-uniq-0.1.0.1
- ref-tf-0.4.0.1
가 나는 것을 시도했다 생각하지만, pparently 내가 뭔가 다른 일을해야합니다, 예를 들어 패키지에서 반사를 지정하는 것 외에도 나는 또한 여분의 deps에 넣어 .. LOL 어쨌든 .. 효과가! 고맙습니다 :) –