File: th-env.cabal

package info (click to toggle)
haskell-th-env 0.1.1-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 72 kB
  • sloc: haskell: 36; makefile: 6
file content (53 lines) | stat: -rw-r--r-- 1,384 bytes parent folder | download
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
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
--
-- hash: 95226380269cc2dc702ac016f5a227875b5724dd211f6548ebc31dbe2a112191

name:           th-env
version:        0.1.1
synopsis:       Template Haskell splices that expand to an environment variable
description:    TH splices that expand to an environment variable value. Can be used to embed build-time parameters in your application.
category:       Template Haskell
homepage:       https://github.com/dzhus/th-env#readme
bug-reports:    https://github.com/dzhus/th-env/issues
author:         Dmitry Dzhus
maintainer:     dima@dzhus.org
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    CHANGELOG.md
    README.md

source-repository head
  type: git
  location: https://github.com/dzhus/th-env

library
  exposed-modules:
      Language.Haskell.TH.Env
  other-modules:
      Paths_th_env
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat
  build-depends:
      base <5
    , template-haskell
    , th-compat
  default-language: Haskell2010

test-suite readme
  type: exitcode-stdio-1.0
  main-is: README.lhs
  other-modules:
      Paths_th_env
  ghc-options: -Wall -Wcompat -pgmL markdown-unlit
  build-depends:
      base <5
    , markdown-unlit
    , th-env
  default-language: Haskell2010