packages feed

hwk-0.4: hwk.cabal

name:                hwk
version:             0.4
synopsis:            Simple cli text processing with Haskell functions
description:
            A commandline tool for text processing with Haskell functions,
            which can used in addition to awk, grep, sed, etc.
            It applies the function supplied on the commandline using hint
            to lines of standard input and outputs the results.
homepage:            https://github.com/juhp/hwk
license:             MIT
license-file:        LICENSE
author:              Lukas Martinelli
maintainer:          Jens Petersen <juhpetersen@gmail.com>
copyright:           2016-2017 Lukas Martinelli,
                     2020 Jens Petersen
category:            Development
build-type:          Simple
data-files:          Hwk.hs
extra-source-files:  install.sh
extra-doc-files:     README.md
                     ChangeLog.md
cabal-version:       1.18

source-repository head
  type:                git
  location:            https://github.com/juhp/hwk.git

executable hwk
  main-is:             Main.hs
  other-modules:       Paths_hwk
  autogen-modules:     Paths_hwk
  build-depends:       base <5,
                       directory >= 1.2.3.0,
                       extra,
                       filepath,
                       hint,
                       simple-cmd-args >= 0.1.2
  default-language:    Haskell2010
  ghc-options:         -Wall
  if impl(ghc >= 8.0)
    ghc-options:       -Wcompat
                       -Widentities
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wredundant-constraints
  if impl(ghc >= 8.2)
    ghc-options:       -fhide-source-paths
  if impl(ghc >= 8.4)
    ghc-options:       -Wmissing-export-lists
                       -Wpartial-fields