3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
21 lines
670 B
Nix
21 lines
670 B
Nix
{ cabal, hspec, liftedBase, mmorph, monadControl, mtl, transformers
|
|
, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "resourcet";
|
|
version = "0.4.7.1";
|
|
sha256 = "1x9njf5amxv04fvn7fsgpagvzl09sl6bnnx686i554frg66b2azh";
|
|
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 ];
|
|
};
|
|
})
|