3
0
Fork 0
forked from mirrors/nixpkgs

haskell-data-pprint: add missing fetchurl and '-p2' flag

This commit is contained in:
Peter Simons 2013-10-19 13:23:27 +02:00
parent cd5a60d590
commit 2656f1b4a1

View file

@ -1,4 +1,4 @@
{ cabal, deepseq, mtl, parallel, time }:
{ cabal, deepseq, mtl, parallel, time, fetchurl }:
cabal.mkDerivation (self: {
pname = "data-pprint";
@ -9,6 +9,7 @@ cabal.mkDerivation (self: {
sha256 = "0wxvc7cbv4qpjl5zxy41863qpzda2ma75pmnnqx29qyh3rxp7biw";
})
];
patchFlags = "-p2";
meta = {
description = "Prettyprint and compare Data values";
license = self.stdenv.lib.licenses.bsd3;