packages feed

skopedate-0.1: skopedate.cabal

name:                skopedate
version:             0.1
synopsis:            Check dates of container images
description:         This tool checks the dates of a container image in
                     registries.
license:             MIT
license-file:        LICENSE
author:              Jens Petersen <juhpetersen@gmail.com>
maintainer:          Jens Petersen <juhpetersen@gmail.com>
copyright:           2018-2021,2023 Jens Petersen
category:            Utility
homepage:            https://github.com/juhp/skopedate
bug-reports:         https://github.com/juhp/skopedate/issues
build-type:          Simple
extra-doc-files:     README.md
                     CHANGELOG.md
cabal-version:       2.0
tested-with:         GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7,
                     GHC == 9.0.2, GHC == 9.2.8, GHC == 9.4.5, GHC == 9.6.2

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

executable skopedate
  main-is:             src/Main.hs
  autogen-modules:       Paths_skopedate
  other-modules:       Paths_skopedate

  build-depends:       aeson
                     , base < 5
                     , bytestring
                     , extra
                     , http-query
                     , simple-cmd >= 0.2.1
                     , simple-cmd-args
                     , time
                     , typed-process
  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
  if impl(ghc >= 8.10)
    ghc-options:       -Wunused-packages

test-suite test
    main-is: tests.hs
    type: exitcode-stdio-1.0
    hs-source-dirs: test

    default-language: Haskell2010

    ghc-options:   -Wall
    build-depends: base >= 4 && < 5,
                   simple-cmd
    build-tool-depends: skopedate:skopedate