2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, conduit, resourcePool, transformers }:
|
2012-01-26 15:20:14 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pool-conduit";
|
2012-02-01 11:39:59 +01:00
|
|
|
version = "0.0.0.1";
|
|
|
|
sha256 = "1im5fpwadg9hmajay6dkwmlzbp5rzn8hh9wh01iy23jgivkqk2q0";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ conduit resourcePool transformers ];
|
2012-01-26 15:20:14 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
|
|
|
description = "Resource pool allocations via ResourceT";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-26 15:20:14 +01:00
|
|
|
};
|
|
|
|
})
|