nixpkgs/pkgs/development/libraries/haskell/resourcet/default.nix

21 lines
670 B
Nix
Raw Normal View History

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