packages feed

futhask-0.1.0: futhask.cabal

cabal-version: 1.12

name:           futhask
version:        0.1.0
synopsis:       Generate Haskell wrappers for Futhark libraries
description:    Please see the README on GitLab at <https://gitlab.com/Gusten_Isfeldt/futhask#futhask>
category:       FFI Tools
author:         Gusten Isfeldt
maintainer:     isfeldt@kth.se
copyright:      2020, Gusten Isfeldt
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://gitlab.com/Gusten_Isfeldt/futhask.git

library
  exposed-modules:
      Backends
      CodeBodies
      Conversion
      Headers
  other-modules:
      Paths_futhask
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <4.15
    , directory >=1.3.3 && <1.4
    , raw-strings-qq >=1.1 && <1.2
    , split >=0.2.3 && <0.3
  default-language: Haskell2010

executable futhask
  main-is: Main.hs
  other-modules:
      Paths_futhask
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base
    , directory
    , futhask
    , raw-strings-qq
    , split
  default-language: Haskell2010