2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, hspec, liftedBase, monadControl, transformers
|
|
|
|
, transformersBase
|
2012-03-25 20:33:53 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "io-choice";
|
2013-04-26 09:40:28 +01:00
|
|
|
version = "0.0.3";
|
|
|
|
sha256 = "1dfl6n3r8hifl9rli2qvwgichz3h7nxq0v6m1k29vb8dv35ldsd8";
|
2012-03-25 20:33:53 +01:00
|
|
|
buildDepends = [
|
|
|
|
liftedBase monadControl transformers transformersBase
|
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [ hspec liftedBase monadControl transformers ];
|
2012-03-25 20:33:53 +01:00
|
|
|
meta = {
|
|
|
|
description = "Choice for IO and lifted IO";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-03-25 20:33:53 +01:00
|
|
|
};
|
|
|
|
})
|