Files
haskell.nix/test/setup-deps/pkg/pkg.cabal
2021-11-13 12:43:04 +13:00

38 lines
1008 B
Plaintext

cabal-version: 2.2
-- Initial package description 'pkgb.cabal' generated by 'cabal init'. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: pkg
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: LicenseRef-PublicDomain
author: Rodney Lorrimar
maintainer: rodney.lorrimar@iohk.io
category: Testing
custom-setup
setup-depends: conduit
, conduit-extra
, Cabal
, ghc
, async >=2.0.0.0
library
exposed-modules: Pkg
build-depends: base
hs-source-dirs: src
default-language: Haskell2010
build-tools: alex, happy
executable pkg
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base
, optparse-applicative
, text
hs-source-dirs: app
default-language: Haskell2010