nixpkgs/pkgs/development/libraries/haskell/resourcet/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

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 ];
};
})