18 lines
583 B
Nix
18 lines
583 B
Nix
{ cabal, resourcePool, resourcet, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "pool-conduit";
|
|
version = "0.1.1";
|
|
sha256 = "1gaj0gwwbr950jkxhpl326py758j2mvh557xz737js9qcs9g3cg1";
|
|
buildDepends = [ resourcePool resourcet transformers ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
|
description = "Resource pool allocations via ResourceT";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|