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
|
name: gitrev
version: 1.3.1
synopsis: Compile git revision info into Haskell projects
homepage: https://github.com/acfoltzer/gitrev
license: BSD3
license-file: LICENSE
author: Adam C. Foltzer
maintainer: acfoltzer@galois.com
category: Development
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2
description: Some handy Template Haskell splices for including the current git hash and branch in the code of your project. Useful for including in panic messages, @--version@ output, or diagnostic info for more informative bug reports.
source-repository head
type: git
location: https://github.com/acfoltzer/gitrev.git
library
build-depends: base >= 4.6 && < 5,
base-compat >= 0.6.0,
directory,
filepath,
template-haskell,
process
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
exposed-modules: Development.GitRev
|