Cubic
Cubic

Reputation: 15673

Are most Cabal packages actually being maintained?

I wanted to try and see if Haskell can actually be used for game development (I heard about FRP, but I'm not sure if it can solve the issues I imagine there are elegantly - I am reading http://theses.fh-hagenberg.at/thesis/Meisinger10 right now to learn about it)

Anyways - so here https://stackoverflow.com/questions/952841/exemplary-haskell-game-code I read that LambdaHack would be a good example - it seems to work, but there also seems to be a lot of deprecated code in it and it's dependencies (I got a LOT of "Don't use this, this will be removed in the next version"-kind of warnings. Are those packages actually being maintained anymore, or should I look for something else that is?

Upvotes: 0

Views: 170

Answers (1)

Don Stewart
Don Stewart

Reputation: 137937

There are several thousand open source libraries on Hackage (somewhere above 4000 at this point). As for any open source library collection, they have varying levels of maintainer commitment. It is up to you to use the data published about the package to determine if it meets your level of quality.

In fact, the rate of new library production is growing literally exponentially:

enter image description here

Measuring maintainer commitment is one of the possible metrics to consider when choosing a library to use. To aid in this, we show the maintainer's release record.

Upvotes: 6

Related Questions