mirror of
https://github.com/simplex-chat/haskell.nix.git
synced 2026-06-03 09:17:32 +00:00
38 lines
1008 B
Plaintext
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
|