aboutsummaryrefslogtreecommitdiff
path: root/weather.cabal
blob: 610c58cbecf0c749d2fc91ba5a9c533aeecbf1d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cabal-version:      2.4
name:               weather
version:            0.1.0.0
synopsis:  A simple server serving Victorian weather in both html and json.

description: A simple weather server using BoM api to serve weather info
             for the next 7 days in Victoria, in both html and json formats.

bug-reports: id@ypei.org

license: AGPL-3.0-or-later
author: Yuchen Pei
maintainer:  Yuchen Pei <id@ypei.org>
copyright:  2022 Yuchen Pei

executable weather
    main-is:          Weather.hs

    -- other-modules:

    build-depends:
        base, containers, text, time, aeson, process, xml, yesod
    hs-source-dirs:   .
    default-language: Haskell2010