19 lines
595 B
Nix
19 lines
595 B
Nix
{ cabal, liftedBase, monadControl, mtl, transformers
|
|
, transformersBase
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "resourcet";
|
|
version = "0.4.3";
|
|
sha256 = "0j3sr4xl30nszy79akzzn8aws40bmhd2dyw8ispirnx004i6ay3b";
|
|
buildDepends = [
|
|
liftedBase monadControl mtl transformers transformersBase
|
|
];
|
|
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 ];
|
|
};
|
|
})
|