2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, StateVar, transformers }:
|
2009-05-04 15:33:01 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-05-04 15:33:01 +02:00
|
|
|
pname = "Hipmunk";
|
2012-03-09 11:01:19 +01:00
|
|
|
version = "5.2.0.7";
|
|
|
|
sha256 = "1cinxhz4qb8xcbygifx85q4zf6pmjwi90v01vqwyvwlfxmbk0j7k";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ StateVar transformers ];
|
2009-05-04 15:33:01 +02:00
|
|
|
meta = {
|
2011-08-07 23:59:33 +02:00
|
|
|
homepage = "http://patch-tag.com/r/felipe/hipmunk/home";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "A Haskell binding for Chipmunk";
|
2011-08-07 23:59:33 +02:00
|
|
|
license = "unknown";
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-05-04 15:33:01 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|