1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 21:15:03 -04:00
nixpkgs/pkgs/development/libraries/haskell/mainland-pretty/default.nix
2012-09-17 16:17:57 +02:00

16 lines
496 B
Nix

{ cabal, srcloc, text }:
cabal.mkDerivation (self: {
pname = "mainland-pretty";
version = "0.2.2";
sha256 = "0kvn67g2ic46ybgyxpgpzjapwiww9848m9dv8y3xkkl7jd8anpb2";
buildDepends = [ srcloc text ];
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 ];
};
})