packages feed

th-nowq-0.1.0.4: th-nowq.cabal

cabal-version: 1.12
name: th-nowq
version: 0.1.0.4
license: BSD3
license-file: LICENSE
maintainer: dima@dzhus.org
author: Dmitry Dzhus
homepage: https://github.com/dzhus/th-nowq#readme
bug-reports: https://github.com/dzhus/th-nowq/issues
synopsis: Template Haskell splice that expands to current time
description:
    TH splice that expands to current time as a string literal in ISO-8601 format. Can be used to embed the compilation timestamp in your application.
category: Template Haskell
build-type: Simple
extra-source-files:
    CHANGELOG.md
    README.md

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

library
    exposed-modules:
        Language.Haskell.TH.Now
    hs-source-dirs: src
    other-modules:
        Paths_th_nowq
    default-language: Haskell2010
    ghc-options: -Wall -Wcompat
    build-depends:
        base <5,
        template-haskell <2.16,
        time <1.10

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