2013-12-10 00:32:00 +01:00
|
|
|
{ cabal, exceptions, hashable, stm, time, transformers, vector }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "ex-pool";
|
2014-05-15 16:08:35 +02:00
|
|
|
version = "0.2";
|
|
|
|
sha256 = "0da5grl2fdca24zhlngq2n16smdb4f5vvxqzc29ipsc3j7wkbmva";
|
2013-12-10 00:32:00 +01:00
|
|
|
buildDepends = [
|
|
|
|
exceptions hashable stm time transformers vector
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/kim/ex-pool";
|
|
|
|
description = "Another fork of resource-pool, with a MonadIO and MonadCatch constraint";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|