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-01-21 21:39:44 +01:00
|
|
|
version = "0.1.0.3";
|
|
|
|
sha256 = "1fk2jv8xwjb4xmzcx7h74nh14i3wf5mpifiki9rvq4hnrb7gdx36";
|
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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|