How do you search across library versions in Haskell?

126 views Asked by At

How do you find out which version(s) of a particular library includes a given definition? In my case, I noticed that gloss fails to install with the GLFW backend...

Graphics\Gloss\Internals\Interface\Backend\GLFW.hs:12:45: error:
    Module `Graphics.UI.GLFW' does not export `WindowValue(..)'
cabal: Leaving directory 'C:\Users\Jonatan\AppData\Local\Temp\cabal-tmp-
22520\gloss-1.11.1.1'

... so I'd like to find out when WindowValue was removed. I've tried Hoogle, Stackage and Hayoo, with no luck.

1

There are 1 answers

5
Li-yao Xia On BEST ANSWER

WindowValue was last seen in GLFW-b-0.1.0.5.

I don't understand what is up with the version bounds in gloss, they somehow require GLFW-b ≥ 1.4.1, which makes no sense.