-- Initial wiringPi.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ -- The name of the package. name: wiringPi -- The package version. See the Haskell package versioning policy (PVP) -- for standards guiding when and how versions should be incremented. -- http://www.haskell.org/haskellwiki/Package_versioning_policy -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.1.0.0 -- A short (one-line) description of the package. synopsis: Access GPIO pins on Raspberry Pi via wiringPi library -- A longer description of the package. description: This is a Haskell binding to the , which allows you to interface with the GPIO pins on the . Unlike some other solutions for using the Raspberry Pi's GPIO pins, wiringPi provides access to more advanced features, such as enabling the internal pull-up or pull-down resistors. -- The license under which the package is released. license: BSD3 -- The file containing the license text. license-file: LICENSE -- The package author(s). author: Patrick Pelletier -- An email address to which users can send suggestions, bug reports, and -- patches. maintainer: code@funwithsoftware.org -- A copyright notice. copyright: © Patrick Pelletier, 2017 homepage: https://github.com/ppelleti/hs-wiringPi bug-reports: https://github.com/ppelleti/hs-wiringPi/issues category: Hardware build-type: Simple -- Extra files to be distributed with the package, such as examples or a -- README. -- extra-source-files: -- Constraint on the version of Cabal needed to build this package. cabal-version: >=1.10 tested-with: GHC == 7.6.3 source-repository head Type: git Location: https://github.com/ppelleti/hs-wiringPi.git library -- Modules exported by the library. exposed-modules: System.Hardware.WiringPi -- Modules included in this library but not exported. -- other-modules: -- LANGUAGE extensions used by modules in this package. other-extensions: CPP, ForeignFunctionInterface -- Other library packages from which modules are imported. build-depends: base >= 4.6 && < 5 -- Directories containing source files. hs-source-dirs: src -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source. build-tools: hsc2hs -- Base language which the package is written in. default-language: Haskell2010 extra-libraries: wiringPi ghc-options: -fwarn-unused-imports -fwarn-unused-binds executable pwm-example -- .hs or .lhs file containing the Main module. main-is: pwm-example.hs -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base >= 4.6 && < 5 , wiringPi -- Directories containing source files. hs-source-dirs: examples -- Base language which the package is written in. default-language: Haskell2010 executable output-example -- .hs or .lhs file containing the Main module. main-is: output-example.hs -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base >= 4.6 && < 5 , wiringPi -- Directories containing source files. hs-source-dirs: examples -- Base language which the package is written in. default-language: Haskell2010 executable write-byte-example -- .hs or .lhs file containing the Main module. main-is: write-byte-example.hs -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base >= 4.6 && < 5 , wiringPi -- Directories containing source files. hs-source-dirs: examples -- Base language which the package is written in. default-language: Haskell2010 executable info-example -- .hs or .lhs file containing the Main module. main-is: info-example.hs -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base >= 4.6 && < 5 , wiringPi -- Directories containing source files. hs-source-dirs: examples -- Base language which the package is written in. default-language: Haskell2010 executable broadcom-example -- .hs or .lhs file containing the Main module. main-is: broadcom-example.hs -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base >= 4.6 && < 5 , wiringPi -- Directories containing source files. hs-source-dirs: examples -- Base language which the package is written in. default-language: Haskell2010 executable turn-off -- .hs or .lhs file containing the Main module. main-is: turn-off.hs -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base >= 4.6 && < 5 , wiringPi -- Directories containing source files. hs-source-dirs: examples -- Base language which the package is written in. default-language: Haskell2010 executable wiringPi-test -- .hs or .lhs file containing the Main module. main-is: wiringPi-test.hs -- LANGUAGE extensions used by modules in this package. -- other-extensions: -- Other library packages from which modules are imported. build-depends: base >= 4.6 && < 5 , wiringPi -- Directories containing source files. hs-source-dirs: examples -- Base language which the package is written in. default-language: Haskell2010