2012-09-17 16:17:57 +02:00
|
|
|
{ cabal, srcloc, text }:
|
2012-05-20 19:38:03 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "mainland-pretty";
|
2012-10-15 11:52:33 +02:00
|
|
|
version = "0.2.4";
|
|
|
|
sha256 = "0x481k36rz4zvj1nwvrfw1d10vbmmx8gb5f2nc8alnxcbc2y7xwq";
|
2012-09-17 16:17:57 +02:00
|
|
|
buildDepends = [ srcloc text ];
|
2012-05-20 19:38:03 +02: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 ];
|
|
|
|
};
|
|
|
|
})
|