forked from bartavelle/hruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hruby.cabal
48 lines (43 loc) · 1.75 KB
/
hruby.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
cabal-version: >= 1.10
name: hruby
version: 0.5.0.0
synopsis: Embed a Ruby intepreter in your Haskell program !
description: This works with Ruby 2.2+. Everything you need should be in Foreign.Ruby.Safe.
license: BSD3
license-file: LICENSE
author: Simon Marechal
maintainer: [email protected]
-- copyright:
category: Language
build-type: Custom
extra-source-files: test/*.rb
Tested-With: GHC == 8.8.1, GHC == 8.10.2, GHC == 9.0.1
custom-setup
setup-depends: Cabal, base, process
source-repository head
type: git
location: git://github.com/bartavelle/hruby.git
library
exposed-modules: Foreign.Ruby, Foreign.Ruby.Bindings, Foreign.Ruby.Helpers, Foreign.Ruby.Safe
ghc-options: -Wall
build-depends: base >= 4.6 && < 5
, aeson >= 2
, bytestring >= 0.10.0.2
, text >= 0.11
, attoparsec >= 0.11 && < 0.15
, vector >= 0.10
, unordered-containers >= 0.2 && < 0.3
, stm >= 2.4 && < 2.6
, scientific >= 0.2 && < 0.4
c-sources: cbits/shim.c
install-includes: cbits/shim.h
include-dirs: cbits
pkgconfig-depends: ruby
default-language: Haskell2010
Test-Suite test-roundtrip
hs-source-dirs: test
type: exitcode-stdio-1.0
ghc-options: -Wall -threaded
build-depends: base >= 4.6 && < 5,hruby,aeson,QuickCheck,text,attoparsec,vector
main-is: roundtrip.hs
default-language: Haskell2010