2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, baseUnicodeSymbols, monadControl, transformersBase }:
|
2011-12-29 17:42:08 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "lifted-base";
|
2012-07-02 10:44:37 +02:00
|
|
|
version = "0.1.1.1";
|
|
|
|
sha256 = "1cfk3n12qhyrrfvw410gfydbgmb7r9y65fsjp2r3c4ilcyd5li70";
|
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
|
|
|
];
|
|
|
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 17:42:08 +01:00
|
|
|
};
|
|
|
|
})
|