blob: d6dadef849a1ec0b98388209db828f140ccd81a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ mkDerivation
, aeson
, aeson-pretty
, ansi-terminal
, base
, hscolour
, lib
, nicify-lib
, pa-prelude
, text
}:
mkDerivation {
pname = "pa-pretty";
version = "0.1.1.0";
sha256 = "da925a7cf2ac49c5769d7ebd08c2599b537efe45b3d506bf4d7c8673633ef6c9";
libraryHaskellDepends = [
aeson
aeson-pretty
ansi-terminal
base
hscolour
nicify-lib
pa-prelude
text
];
homepage = "https://github.com/possehl-analytics/pa-hackage";
description = "Some pretty-printing helpers";
license = lib.licenses.bsd3;
}
|