yav / pretty-show

Tools for working with derived Show instances in Haskell.
MIT License
57 stars 15 forks source link

License is MIT while source says BSD3 #12

Closed juhp closed 9 years ago

juhp commented 9 years ago

There seems to be an inconsistency in the LICENSE file (MIT) and license stated in the source files (BSD). MIT and BSD are separate and different licenses.

Which is the correct intended license? :)

Thanks for developing pretty-show

mathstuf commented 9 years ago

Looking at the git blame, it appears that the LICENSE file was copied from another project since it has a date of 2008 while the import was in 2009. Though it is possible the code is older than the git history too, but judging by the contents of the commit, that is unlikely.

yav commented 9 years ago

Thanks for pointing this out! I've corrected the Cabal file to indicate that we are using the MIT license.

juhp commented 9 years ago

Thanks - it would be nice to update the headers in Pretty.hs and Value.hs then also to state MIT.

juhp commented 9 years ago

Thanks again