2012-11-03 11:52:12 +01:00
|
|
|
{ cabal, mtl, text }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "boomerang";
|
2014-01-03 11:56:20 +01:00
|
|
|
version = "1.4.1";
|
|
|
|
sha256 = "0pmaysp6vw6cnxh3px47pwflm4fc83idld09bpnfnh2jkscp630a";
|
2012-11-03 11:52:12 +01:00
|
|
|
buildDepends = [ mtl text ];
|
|
|
|
meta = {
|
|
|
|
description = "Library for invertible parsing and printing";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|