mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-22 04:01:56 +01:00
Add Haskoin and its dependencies
This commit is contained in:
parent
b59820d06a
commit
22cf215e71
@ -3580,6 +3580,16 @@ packages:
|
|||||||
"Wanja Chresta <wanja.hs@chrummibei.ch> @wchresta":
|
"Wanja Chresta <wanja.hs@chrummibei.ch> @wchresta":
|
||||||
- matrix-static
|
- matrix-static
|
||||||
|
|
||||||
|
"Jean-Pierre Rupp <xenog@protonmail.com> @xenog":
|
||||||
|
- murmur3
|
||||||
|
- nqe
|
||||||
|
- secp256k1
|
||||||
|
- rocksdb-haskell
|
||||||
|
- rocksdb-query
|
||||||
|
- haskoin-core
|
||||||
|
- haskoin-node
|
||||||
|
- haskoin-store
|
||||||
|
|
||||||
# If you stop maintaining a package you can move it here.
|
# If you stop maintaining a package you can move it here.
|
||||||
# It will then be disabled if it starts causing problems.
|
# It will then be disabled if it starts causing problems.
|
||||||
# See https://github.com/fpco/stackage/issues/1056
|
# See https://github.com/fpco/stackage/issues/1056
|
||||||
|
|||||||
@ -103,6 +103,7 @@ apt-get install -y \
|
|||||||
libpcap0.8-dev \
|
libpcap0.8-dev \
|
||||||
libpq-dev \
|
libpq-dev \
|
||||||
libre2-dev \
|
libre2-dev \
|
||||||
|
librocksdb-dev \
|
||||||
libsdl1.2-dev \
|
libsdl1.2-dev \
|
||||||
libsdl2-dev \
|
libsdl2-dev \
|
||||||
libsdl2-gfx-dev \
|
libsdl2-gfx-dev \
|
||||||
@ -254,6 +255,16 @@ curl https://download.libsodium.org/libsodium/releases/LATEST.tar.gz > libsodium
|
|||||||
&& ./configure \
|
&& ./configure \
|
||||||
&& make install
|
&& make install
|
||||||
|
|
||||||
|
# Install secp256k1
|
||||||
|
cd /tmp \
|
||||||
|
&& git clone https://github.com/bitcoin-core/secp256k1.git \
|
||||||
|
&& cd secp256k1 \
|
||||||
|
&& ./autogen.sh \
|
||||||
|
&& ./configure --enable-module-recovery \
|
||||||
|
&& make \
|
||||||
|
&& make install
|
||||||
|
|
||||||
|
|
||||||
# NOTE: also update Dockerfile when cuda version changes
|
# NOTE: also update Dockerfile when cuda version changes
|
||||||
# Install CUDA toolkit
|
# Install CUDA toolkit
|
||||||
# The current version can be found at: https://developer.nvidia.com/cuda-downloads
|
# The current version can be found at: https://developer.nvidia.com/cuda-downloads
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user