mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
18 lines
590 B
Nix
18 lines
590 B
Nix
{ cabal, exceptions, hashable, stm, time, transformers, vector }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "ex-pool";
|
|
version = "0.1.0.2";
|
|
sha256 = "11q63yfr59r6cfzi635xj75nhcc2yi83snc75k638wyamxgvxng4";
|
|
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 ];
|
|
};
|
|
})
|