2012-09-17 15:17:57 +01:00
|
|
|
{ cabal, srcloc, text }:
|
2012-05-20 18:38:03 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "mainland-pretty";
|
2013-01-04 18:17:22 +00:00
|
|
|
version = "0.2.5";
|
|
|
|
sha256 = "0h3q7xw69dc0lcqwlacsnv36dlbj0sfgv5imjlqrixy6m5cniq9x";
|
2012-09-17 15:17:57 +01:00
|
|
|
buildDepends = [ srcloc text ];
|
2012-05-20 18:38:03 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.eecs.harvard.edu/~mainland/";
|
|
|
|
description = "Pretty printing designed for printing source code";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
|
|
};
|
|
|
|
})
|