2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, extensibleExceptions, transformers }:
|
2011-03-13 09:46:54 +01:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-03-13 09:46:54 +01:00
|
|
|
pname = "monad-peel";
|
2012-11-21 12:04:48 +01:00
|
|
|
version = "0.1.1";
|
|
|
|
sha256 = "0n3cxa94wd3hjvy9jgf3d8p7qfb9jaaf29simjya7rlcb673pg3l";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ extensibleExceptions transformers ];
|
2011-03-13 09:46:54 +01:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://andersk.mit.edu/haskell/monad-peel/";
|
2011-03-13 09:46:54 +01:00
|
|
|
description = "Lift control operations like exception catching through monad transformers";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-03-13 09:46:54 +01:00
|
|
|
};
|
|
|
|
})
|