packages feed

reflex-process-0.3.3.2: reflex-process.cabal

cabal-version: >=1.10
name: reflex-process
version: 0.3.3.2
synopsis: Reflex FRP interface for running system processes
description:
  Run and interact with system processes from within a Reflex FRP application.
  .
  <https://reflex-frp.org>
bug-reports: https://github.com/reflex-frp/reflex-process/issues
license: BSD3
license-file: LICENSE
author: Obsidian Systems LLC
maintainer: maintainer@obsidian.systems
copyright: 2020 Obsidian Systems LLC
category: System, FRP
build-type: Simple
extra-source-files: ChangeLog.md
                    README.md
tested-with:
  GHC ==8.10.7 || ==9.6.1

source-repository head
  type: git
  location: https://github.com/reflex-frp/reflex-process

library
  exposed-modules: Reflex.Process
                   Reflex.Process.Lines
  build-depends: base >=4.12 && <5
               , async >= 2 && < 3
               , bytestring >= 0.10 && < 0.13
               , containers >= 0.6 && < 0.9
               , data-default >= 0.2 && < 0.9
               , process >= 1.6.4 && < 1.7
               , reflex >= 0.7.1 && < 1
               , unix >= 2.7 && < 2.9
  hs-source-dirs: src
  default-language: Haskell2010
  ghc-options: -Wall

executable readme
  main-is: README.lhs
  ghc-options: -threaded -optL -q
  build-depends: base
               , containers >= 0.5 && < 0.9
               , data-default
               , process
               , reflex
               , reflex-process
               , reflex-vty >= 0.2 && < 0.7
               , text >= 1.2.3 && < 2.2
               , vty
  default-language: Haskell2010

test-suite tests
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: test
  ghc-options: -O2 -Wall -rtsopts -threaded
  build-depends:
    async,
    base,
    bytestring,
    containers,
    dependent-sum,
    hspec,
    mtl,
    primitive,
    process,
    ref-tf,
    reflex,
    reflex-process,
    unix