4100292b2f
A JSON pretty-printing library compatible with aeson as well as a command-line tool to improve readabilty of streams of JSON data. The library provides the function "encodePretty". It is a drop-in replacement for aeson's "encode" function, producing JSON-ByteStrings for human readers. The command-line tool reads JSON from stdin and writes prettified JSON to stdout. It also offers a complementary "compact"-mode, essentially the opposite of pretty-printing.
18 lines
649 B
Makefile
18 lines
649 B
Makefile
# $NetBSD: Makefile,v 1.1 2020/01/15 06:04:21 pho Exp $
|
|
|
|
DISTNAME= aeson-pretty-0.8.8
|
|
CATEGORIES= converters
|
|
|
|
MAINTAINER= pho@cielonegro.org
|
|
COMMENT= JSON pretty-printing library and command-line tool
|
|
LICENSE= modified-bsd
|
|
|
|
.include "../../converters/hs-aeson/buildlink3.mk"
|
|
.include "../../devel/hs-base-compat/buildlink3.mk"
|
|
.include "../../math/hs-scientific/buildlink3.mk"
|
|
.include "../../devel/hs-unordered-containers/buildlink3.mk"
|
|
.include "../../devel/hs-vector/buildlink3.mk"
|
|
.include "../../textproc/hs-attoparsec/buildlink3.mk"
|
|
.include "../../devel/hs-cmdargs/buildlink3.mk"
|
|
.include "../../mk/haskell.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|