Cabal-Version:  2.2
Name:           cabal-flatpak
Version:        0.1.2
License:        BSD-3-Clause
License-File:   LICENSE
Author:         Henning Thielemann <haskell@henning-thielemann.de>
Maintainer:     Henning Thielemann <haskell@henning-thielemann.de>
Homepage:       https://hub.darcs.net/thielema/cabal-flatpak/
Category:       Distribution
Synopsis:       Generate a FlatPak manifest from a Cabal package description
Description:
  Generate a FlatPak manifest from a Cabal package description.
  .
  Inspired by Richard Szibele's stackpak:
  <https://gitlab.com/rszibele/stackpak#readme>
  .
  See also David Lettier's post on Flatpak for Haskell:
  <https://medium.com/@lettier/how-to-flatpak-a-haskell-app-into-flathub-86ef6d69e94d>
Tested-With:    GHC==8.6.5
Build-Type:     Simple
Extra-Source-Files:
  Makefile
  ReadMe.md
  Changes.md
  flatpak.cabal.json

Source-Repository this
  Tag:         0.1.2
  Type:        darcs
  Location:    https://hub.darcs.net/thielema/cabal-flatpak/

Source-Repository head
  Type:        darcs
  Location:    https://hub.darcs.net/thielema/cabal-flatpak/

Executable cabal-flatpak
  Build-Depends:
    cabal-plan >=0.5 && <0.8,
    cryptohash-sha256 >=0.11 && <0.12,
    zlib >=0.5.3 && <0.8,
    tar >=0.5.0.3 && <0.7,
    http-client-tls >=0.3.5.3 && <0.4,
    http-client >=0.5.12 && <0.8,
    http-types >=0.10 && <0.13,
    aeson-pretty >=0.8.7 && <0.9,
    aeson >=2.0 && <2.3,
    yaml >=0.11 && <0.12,
    shell-utility >=0.1 && <0.2,
    optparse-applicative >=0.11 && <0.19,
    pathtype >=0.8 && <0.9,
    directory >=1.2.3 && <1.4,
    text >=1.2 && <2.2,
    bytestring >=0.9 && <0.13,
    containers >=0.5 && <0.8,
    utility-ht >=0.0.12 && <0.1,
    base >=4.5 && <5

  Default-Language: Haskell98
  GHC-Options:    -Wall
  Hs-Source-Dirs: src
  Main-Is:        Main.hs
  Other-Modules:
    Generate
    Package
    Retrieve
    Flatpak
    Option