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";
|
2014-03-11 11:49:26 +01:00
|
|
|
version = "0.2.2.1";
|
|
|
|
sha256 = "13w1y67wng5rv90fsikkwpvx2ajmq5ybnxrx9b2x0y0zbcy7pzk8";
|
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-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 17:42:08 +01:00
|
|
|
};
|
|
|
|
})
|