-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathk9-haskell.cabal
More file actions
53 lines (49 loc) · 1.96 KB
/
k9-haskell.cabal
File metadata and controls
53 lines (49 loc) · 1.96 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
-- SPDX-License-Identifier: MPL-2.0
-- (PMPL-1.0-or-later preferred; MPL-2.0 required for Hackage OSI-approved policy)
--
-- k9-haskell.cabal — Cabal package description for the k9 library.
cabal-version: 2.4
name: k9
version: 0.1.0.0
synopsis: Parser and renderer for K9 (Self-Validating Components)
description:
A Haskell library for parsing and rendering K9 self-validating component
specifications. K9 is a format that embeds security levels, pedigree
metadata, build recipes, and validation checksums directly in the document.
.
Features:
.
* Parse @.k9@ (YAML-like) and @.k9.ncl@ (Nickel) files into a typed AST
* Render the AST back to K9 surface syntax
* Data types for components, pedigrees, security levels (Kennel\/Yard\/Hunt),
recipes, and contracts
* Round-trip fidelity for the YAML-like variant
license: MPL-2.0
license-file: LICENSE-MPL-2.0
author: Jonathan D.A. Jewell
maintainer: j.d.a.jewell@open.ac.uk
copyright: Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)
category: Text, Data, Security
build-type: Simple
homepage: https://github.com/hyperpolymath/k9-haskell
bug-reports: https://github.com/hyperpolymath/k9-haskell/issues
extra-doc-files: CHANGELOG.md
extra-source-files: README.adoc
source-repository head
type: git
location: https://github.com/hyperpolymath/k9-haskell.git
library
exposed-modules:
Data.K9
Data.K9.Types
Data.K9.Parser
Data.K9.Renderer
build-depends:
base >= 4.14 && < 5,
text >= 1.2 && < 2.2,
containers >= 0.6 && < 0.8,
bytestring >= 0.10 && < 0.13
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Wredundant-constraints