2017-09-24 13 views

답변

4

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 
+0

가 나는 것을 시도했다 생각하지만, pparently 내가 뭔가 다른 일을해야합니다, 예를 들어 패키지에서 반사를 지정하는 것 외에도 나는 또한 여분의 deps에 넣어 .. LOL 어쨌든 .. 효과가! 고맙습니다 :) –