compareware/App.cabal

74 lines
2.0 KiB
Plaintext
Raw Permalink Normal View History

2023-04-16 10:31:32 +00:00
-- This file is only a stub file, please see default.nix for adding dependencies.
--
-- Learn more about dependency management in IHP: https://ihp.digitallyinduced.com/Guide/package-management.html
--
-- If you're looking at this file because you're trying to integrate a HLS or other tooling with your IHP project, check out the documentation on Editors and Tooling: https://ihp.digitallyinduced.com/Guide/editors.html
--
-- This cabal file is inside your project as some haskell tools only work when there's a cabal file. It's not actually used for anything besides providing support for haskell tools.
--
2024-04-11 16:25:09 +00:00
name: CompareWare
2023-04-16 10:31:32 +00:00
version: 0.1.0.0
-- synopsis:
-- description:
2024-04-11 16:25:09 +00:00
license: GNU GPLv3
2023-04-16 10:31:32 +00:00
license-file: LICENSE
2024-04-11 16:25:09 +00:00
author: CompareWare Developers
maintainer: hello@compareware.org
2023-04-16 10:31:32 +00:00
-- copyright:
-- category:
build-type: Simple
cabal-version: >=1.10
executable App
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends:
2024-04-11 16:25:09 +00:00
ihp
, base
, wai
, text
, http-conduit
, aeson
2023-04-16 10:31:32 +00:00
hs-source-dirs: .
default-language: Haskell2010
extensions:
OverloadedStrings
, NoImplicitPrelude
, ImplicitParams
, Rank2Types
, DisambiguateRecordFields
, NamedFieldPuns
, DuplicateRecordFields
, OverloadedLabels
, FlexibleContexts
, TypeSynonymInstances
, FlexibleInstances
, QuasiQuotes
, TypeFamilies
, PackageImports
, ScopedTypeVariables
, RecordWildCards
, TypeApplications
, DataKinds
, InstanceSigs
, DeriveGeneric
, MultiParamTypeClasses
, TypeOperators
, DeriveDataTypeable
, MultiWayIf
, UndecidableInstances
, BlockArguments
, PartialTypeSignatures
, LambdaCase
, DefaultSignatures
, EmptyDataDeriving
, BangPatterns
, BlockArguments
, MultiWayIf
, FunctionalDependencies
, PartialTypeSignatures
, StandaloneDeriving
2024-04-11 16:25:09 +00:00
, DerivingVia