Skip to content

Commit

Permalink
Add cabal file (commercialhaskell/stack#5210)
Browse files Browse the repository at this point in the history
  • Loading branch information
cblp committed Oct 4, 2022
1 parent 031faee commit 370f67c
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
# Stack uses this directory as scratch space.
/.stack-work/
# Stack generates the Cabal file from `package.yaml` through hpack.
/*.cabal
90 changes: 90 additions & 0 deletions stellar-sdk.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.6.
--
-- see: https://github.com/sol/hpack

name: stellar-sdk
version: 0.1.0
synopsis: A library to use as SDK for the Stellar payment network.
description: This library provides functions to interact with the Stellar payment network via a Horizon server. It support querying the network, as well as building, signing and submitting transactions.
category: API
homepage: https://github.com/teequoo/stellar-sdk#readme
bug-reports: https://github.com/teequoo/stellar-sdk/issues
author: teequoo
maintainer: teequoo
license: Apache-2.0
build-type: Simple
extra-source-files:
CHANGELOG.md
LICENSE.md
package.yaml
README.md
stack.yaml

source-repository head
type: git
location: https://github.com/teequoo/stellar-sdk

library
exposed-modules:
Network.ONCRPC.XDR
Network.ONCRPC.XDR.Array
Network.ONCRPC.XDR.Cabal
Network.ONCRPC.XDR.Generate
Network.ONCRPC.XDR.Opaque
Network.ONCRPC.XDR.Parse
Network.ONCRPC.XDR.Reident
Network.ONCRPC.XDR.Serial
Network.ONCRPC.XDR.Specification
Network.ONCRPC.XDR.Types
Network.Stellar.Asset
Network.Stellar.Builder
Network.Stellar.Horizon
Network.Stellar.Keypair
Network.Stellar.Network
Network.Stellar.Operation
Network.Stellar.Query
Network.Stellar.TransactionXdr
other-modules:
Paths_stellar_sdk
hs-source-dirs:
library
ghc-options: -Wall
build-depends:
Cabal
, DRBG
, SHA
, aeson
, base
, base32
, base64-bytestring
, bytestring
, cereal
, containers
, ed25519
, filepath
, haskell-src-exts
, parsec
, req
, text
, vector
default-language: Haskell2010

test-suite stellar-sdk-test-suite
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_stellar_sdk
hs-source-dirs:
test-suite
ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
build-depends:
HUnit
, base
, bytestring
, hspec
, stellar-sdk
, tasty
, tasty-hspec
default-language: Haskell2010

0 comments on commit 370f67c

Please sign in to comment.