24 lines
719 B
Nix
24 lines
719 B
Nix
{ cabal, hspec, liftedBase, mmorph, monadControl, mtl, transformers
|
|
, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "resourcet";
|
|
version = "0.4.7";
|
|
sha256 = "0cmh9hhiy0qksigm2rvycyaw58r8357fl6xhv8x465ykw1va0by8";
|
|
buildDepends = [
|
|
liftedBase mmorph monadControl mtl transformers transformersBase
|
|
];
|
|
testDepends = [ hspec liftedBase transformers ];
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Deterministic allocation and freeing of scarce resources";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|