230c6d0bc6
HsYAML is a YAML 1.2 processor, i.e. a library for parsing and serializing YAML documents. Features of HsYAML include: * Pure Haskell implementation with small dependency footprint and emphasis on strict compliance with the YAML 1.2 specification. * Direct decoding to native Haskell types via (aeson-inspired) typeclass-based API (see Data.YAML). * Allows round-tripping while preserving ordering, anchors, and comments at Event-level. * Support for constructing custom YAML node graph representation (including support for cyclic YAML data structures). * Support for the standard (untyped) Failsafe, (strict) JSON, and (flexible) Core "schemas" providing implicit typing rules as defined in the YAML 1.2 specification (including support for user-defined custom schemas; see Data.YAML.Schema). * Support for emitting YAML using Failsafe, (strict) JSON, and (flexible) Core "schemas" (including support for user-defined custom encoding schemas; see Data.YAML.Schema). * Event-based API resembling LibYAML's Event-based API (see Data.YAML.Event). * Low-level API access to lexical token-based scanner (see Data.YAML.Token).
13 lines
379 B
Makefile
13 lines
379 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2020/01/15 07:03:50 pho Exp $
|
|
|
|
BUILDLINK_TREE+= hs-HsYAML
|
|
|
|
.if !defined(HS_HSYAML_BUILDLINK3_MK)
|
|
HS_HSYAML_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.hs-HsYAML+= hs-HsYAML>=0.2.1
|
|
BUILDLINK_ABI_DEPENDS.hs-HsYAML+= hs-HsYAML>=0.2.1.0
|
|
BUILDLINK_PKGSRCDIR.hs-HsYAML?= ../../textproc/hs-HsYAML
|
|
.endif # HS_HSYAML_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -hs-HsYAML
|