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
|
cabal-version: >=1.10
name: skylighting-format-context
version: 0.1.0.2
synopsis: ConTeXt formatter for skylighting syntax highlighting
library
description: This module allows tokens produced by skylighting-core
to be rendered as ConTeXt commands.
homepage: https://github.com/jgm/skylighting
license: BSD3
license-file: LICENSE
author: Albert Krewinkel
maintainer: albert@tarleb.com
copyright: © Albert Krewinkel, John MacFarlane
category: Text
build-type: Simple
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/jgm/skylighting.git
subdir: skylighting-format-context
library
exposed-modules: Skylighting.Format.ConTeXt
other-extensions: CPP
build-depends: base >= 4.8 && < 5.0,
skylighting-core,
text,
containers
hs-source-dirs: src
ghc-prof-options: -fprof-auto-exported
default-language: Haskell2010
ghc-options: -Wall
if impl(ghc >= 8.4)
ghc-options: -fhide-source-paths
if impl(ghc >= 8.10)
ghc-options: -Wunused-packages
|