aboutsummaryrefslogtreecommitdiff
path: root/git-deli.cabal
blob: 837ce166adcf41558304cbcef95ca35375a049eb (plain)
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
cabal-version:   3.0
name:            git-deli
version:         0.1.0.0
synopsis:        git history delinearizer
description:
  git-deli is a git frontend for multi-branch workflows. It creates virtual
  "view" commits that represent pre-merged state of several branches, and
  maintain it over commits that are pushed into the independent branches.

license:         GPL-3.0-or-later
license-file:    LICENSE
author:          Mirek Kratochvil
maintainer:      exa.exa@gmail.com

-- copyright:
category:        Development
build-type:      Simple
extra-doc-files: README.md CHANGELOG.md

common warnings
  ghc-options: -Wall

executable git-deli
  import:           warnings
  main-is:          Main.hs
  other-modules: Opts
  autogen-modules:  Paths_git_deli
  other-modules:    Paths_git_deli
  build-depends:
    , base                  >=4.15 && <5
    , filepath
    , optparse-applicative
    , process

  hs-source-dirs:   .
  default-language: Haskell2010