mirror of
https://github.com/simplex-chat/haskell.nix.git
synced 2026-06-03 09:17:32 +00:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
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: pkgb
|
|
version: 0.1.0.0
|
|
-- synopsis:
|
|
-- description:
|
|
-- bug-reports:
|
|
license: LicenseRef-PublicDomain
|
|
author: Rodney Lorrimar
|
|
maintainer: rodney.lorrimar@iohk.io
|
|
category: Testing
|
|
|
|
library
|
|
exposed-modules: ConduitExample
|
|
, PkgB
|
|
build-depends: base
|
|
, pkga
|
|
, conduit
|
|
, conduit-extra
|
|
, directory
|
|
, resourcet
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
|
|
executable pkgb
|
|
main-is: Main.hs
|
|
build-depends: base
|
|
, pkgb
|
|
, optparse-applicative
|
|
, text
|
|
hs-source-dirs: app
|
|
default-language: Haskell2010
|
|
|
|
test-suite tests
|
|
type: exitcode-stdio-1.0
|
|
main-is: tests.hs
|
|
hs-source-dirs: app
|
|
build-depends: base
|
|
, pkgb
|
|
, process
|
|
build-tool-depends: pkga:pkga-exe
|