summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wl-pprint/default.nix
blob: 5cfea69b266dcf4b90af0e73a3ea5993896d0e1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal }:

cabal.mkDerivation (self: {
  pname = "wl-pprint";
  version = "1.1";
  sha256 = "16kp3fkh0x9kgzk6fdqrm8m0v7b5cgbv0m3x63ybbp5vxbhand06";
  meta = {
    description = "The Wadler/Leijen Pretty Printer";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.simons ];
  };
})