summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/data-pprint/default.nix
blob: 8b73d5be568de9084972ca48f2c608c089265e81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, deepseq, mtl, parallel, time }:

cabal.mkDerivation (self: {
  pname = "data-pprint";
  version = "0.2.2";
  sha256 = "0cr69qv2j8fmmlir8rzlafcxk1cg3lg1z0zrwkz0lb7idm25fy36";
  buildDepends = [ deepseq mtl parallel time ];
  patches = [ (fetchurl { url = "https://github.com/divipp/ActiveHs-misc/pull/3.patch";
                          sha256 = "0wxvc7cbv4qpjl5zxy41863qpzda2ma75pmnnqx29qyh3rxp7biw";
                        })
            ];
  meta = {
    description = "Prettyprint and compare Data values";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})