🐙 Templated web page generator for your git repositories
git clone https://github.com/m-col/gitja
Files | Refs | Readme | License

-rw-r--r-- gitja.cabal


      1 name:                gitja
      2 version:             0.3.0.0
      3 synopsis:            🐙 Templated web page generator for your git repositories
      4 description:         🐙 Templated web page generator for your git repositories
      5 homepage:            https://github.com/m-col/gitja#readme
      6 bug-reports:         https://github.com/m-col/gitja/issues
      7 license:             BSD3
      8 license-file:        LICENSE
      9 author:              Matt Colligan
     10 maintainer:          mcol@posteo.net
     11 copyright:           2021 Matt Colligan
     12 category:            Web, Git
     13 build-type:          Simple
     14 cabal-version:       >=1.10
     15 extra-source-files:  README.rst
     16 
     17 executable gitja
     18   hs-source-dirs:      src
     19   main-is:             Main.hs
     20   other-modules:       Index, Env, Repositories, Templates, Types, Paths_gitja
     21   default-language:    Haskell2010
     22   build-depends:       base >= 4.7 && < 5
     23                      , conduit >= 1.1.0
     24                      , bytestring
     25                      , data-default
     26                      , dhall
     27                      , directory
     28                      , exceptions
     29                      , extra
     30                      , file-embed
     31                      , filepath
     32                      , ginger >= 0.10.4.0
     33                      , gitlib
     34                      , gitlib-libgit2
     35                      , hlibgit2
     36                      , optparse-applicative
     37                      , path
     38                      , path-io >= 1.3.0
     39                      , tagged
     40                      , text
     41                      , transformers
     42                      , unliftio-core
     43                      , unordered-containers
     44                      , utf8-string
     45