I was messing around with HashMap and tried to use a Data.Bson.ObjectId as a key. I, of course, discovered that there is not a Hashable instance for that structure. That's ok, because writing one is trivial.1
instance Hashable ObjectId where hash (Oid x y) = hash (x,y)
I typed that line into GHCi and was told "parse error on input `instance'". This actually makes sense as the GHCi prompt operates as if the lines were being typed into a do block in the IO monad and an instance can not be defined in this context.
My question then, is there a way to define a new instance within GHCi?
1 Why this instance is not provided by the library is another matter. I would believe the answer was to limit dependencies except that the bson package already depends on everything under the sun.