2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, baseUnicodeSymbols, HUnit, monadControl, testFramework
|
|
|
|
, testFrameworkHunit, transformers, transformersBase
|
|
|
|
}:
|
2011-12-29 16:42:08 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "lifted-base";
|
2013-06-05 10:26:49 +01:00
|
|
|
version = "0.2.1.0";
|
|
|
|
sha256 = "0c4vzyfyjvqv5q8mprgxf9ckibpp5k1zh9k5slmdsd9m1l3pwwqy";
|
2011-12-29 16:42:08 +00:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
baseUnicodeSymbols monadControl transformersBase
|
2011-12-29 16:42:08 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
HUnit monadControl testFramework testFrameworkHunit transformers
|
|
|
|
transformersBase
|
|
|
|
];
|
2011-12-29 16:42:08 +00: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-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 16:42:08 +00:00
|
|
|
};
|
|
|
|
})
|