forked from digital-asset/daml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hlb update and document external build steps (digital-asset#2769)
* stack setup for HLB and Nim * build_packages.sh and daml-ledger.cabal * update README * export-package for daml-ledger * export-package, run here * find tmp daml-ledger * update README for review comments * ref daml instructions * further improve the process and documentation in response to comments * have -with-rtsopts match the bazel build * fixes for Gary
- Loading branch information
1 parent
a700261
commit 69b520c
Showing
10 changed files
with
207 additions
and
258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: nim | ||
version: 0.1.0.0 | ||
description: Play Nim on a DAML Ledger | ||
license: Apache-2.0 | ||
author: The DAML Authors | ||
maintainer: nick.chapman@digitalasset.com | ||
github: https://github.com/digital-asset/daml | ||
|
||
dependencies: | ||
- ansi-terminal | ||
- base >= 4.7 && < 5 | ||
- containers | ||
- daml-ledger | ||
- extra | ||
- haskeline | ||
- random | ||
- text | ||
- transformers | ||
- uuid | ||
|
||
executables: | ||
nim-exe: | ||
main: DA.Ledger.App.Nim.Main | ||
source-dirs: src | ||
ghc-options: | ||
- -Wall | ||
- -Wno-name-shadowing | ||
- -threaded | ||
- -rtsopts | ||
- '"-with-rtsopts=-N2 -qg -I0"' | ||
|
||
default-extensions: | ||
- LambdaCase | ||
- NamedFieldPuns | ||
- OverloadedStrings | ||
- RecordWildCards | ||
- ScopedTypeVariables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
resolver: lts-14.3 | ||
|
||
extra-lib-dirs: | ||
- /usr/local/grpc/lib | ||
|
||
extra-include-dirs: | ||
- /usr/local/grpc/include | ||
|
||
extra-deps: | ||
|
||
- git: https://github.com/awakesecurity/proto3-suite | ||
commit: 3f6dd6f612cf2eba3c05798926ff924b0d5ab4fa | ||
|
||
- git: https://github.com/awakesecurity/proto3-wire | ||
commit: 4f355bbac895d577d8a28f567ab4380f042ccc24 | ||
|
||
- git: https://github.com/awakesecurity/gRPC-haskell | ||
commit: be70fc49b0dc25313f57d0e6c6ba2a9fa46b9e6b | ||
subdirs: | ||
- . | ||
- core | ||
|
||
- archive: /tmp/daml-ledger-0.1.0.0.tar.gz |
Oops, something went wrong.