summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/mainland-pretty/default.nix
blob: d64a6c7618009ce65e922eb650da3df9e4522052 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, srcloc, symbol }:

cabal.mkDerivation (self: {
  pname = "mainland-pretty";
  version = "0.1.3.0";
  sha256 = "1grfsn066z11737dxdk1bdhyvz9vjxxn6krfgx9bc8jin6n9h6aq";
  buildDepends = [ srcloc symbol ];
  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 ];
  };
})