nixpkgs/pkgs/development/libraries/haskell/mainland-pretty/default.nix
Andres Loeh fe4677de2f Revert "haskell-mainland-pretty: update to version 0.2.1"
This reverts commit 8e85516e04.

This depends on srcloc-2, and srcloc-2 breaks accelerate-cuda.
2012-07-18 10:25:52 +02:00

16 lines
502 B
Nix

{ 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 ];
};
})