40 lines
818 B
Plaintext
40 lines
818 B
Plaintext
cabal-version: 3.0
|
|
name: werge
|
|
version: 0.2.1.0
|
|
synopsis: mergetool for mangled-up bite-size changes
|
|
license: GPL-3.0-or-later
|
|
license-file: LICENSE
|
|
copyright: (c) 2025 Mirek Kratochvil
|
|
author: Mirek Kratochvil
|
|
maintainer: exa.exa@gmail.com
|
|
|
|
-- copyright:
|
|
category: Text
|
|
build-type: Simple
|
|
extra-doc-files: README.md vim/werge.vim
|
|
|
|
-- extra-source-files:
|
|
|
|
common warnings
|
|
ghc-options: -Wall
|
|
|
|
executable werge
|
|
import: warnings
|
|
main-is: Main.hs
|
|
other-modules:
|
|
Opts
|
|
Paths_werge
|
|
Progs
|
|
Toks
|
|
|
|
autogen-modules: Paths_werge
|
|
build-depends:
|
|
, base >=4.15 && <5
|
|
, filepath
|
|
, optparse-applicative
|
|
, process
|
|
, temporary
|
|
|
|
hs-source-dirs: .
|
|
default-language: Haskell2010
|