2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, baseUnicodeSymbols, HUnit, monadControl, testFramework
|
|
|
|
, testFrameworkHunit, transformers, transformersBase
|
|
|
|
}:
|
2011-12-29 17:42:08 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "lifted-base";
|
2013-04-24 11:18:25 +02:00
|
|
|
version = "0.2.0.4";
|
|
|
|
sha256 = "0ljqa56gd4760x7x32v75n6a4h8f03p2g4xajaj3917w4w2rf5rp";
|
2011-12-29 17:42:08 +01:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
baseUnicodeSymbols monadControl transformersBase
|
2011-12-29 17:42:08 +01:00
|
|
|
];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
|
|
|
HUnit monadControl testFramework testFrameworkHunit transformers
|
|
|
|
transformersBase
|
|
|
|
];
|
2011-12-29 17:42:08 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/basvandijk/lifted-base";
|
|
|
|
description = "lifted IO operations from the base library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 14:57:25 +01:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-12-29 17:42:08 +01:00
|
|
|
};
|
|
|
|
})
|