-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhruby.cabal
45 lines (41 loc) · 1.7 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
cabal-version: >= 1.10
name: hruby
version: 0.5.1.0
synopsis: Embed a Ruby interpreter 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
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