diff options
Diffstat (limited to 'git-deli.cabal')
| -rw-r--r-- | git-deli.cabal | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/git-deli.cabal b/git-deli.cabal new file mode 100644 index 0000000..837ce16 --- /dev/null +++ b/git-deli.cabal @@ -0,0 +1,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 |
