mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 10:49:42 +01:00
Merge pull request #65 from awakenetworks/0.15.1-instructions
Update GRPC instructions for 0.15.1
This commit is contained in:
commit
d618b90481
1 changed files with 4 additions and 4 deletions
|
@ -16,12 +16,12 @@ Building GRPC
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
In order to compile this project, and anything which depends on it, you will need a working installation
|
In order to compile this project, and anything which depends on it, you will need a working installation
|
||||||
of the GRPC C core libraries. This library currently uses the 0.14 version range, so checkout an appropriate revision
|
of the GRPC C core libraries. This library currently uses the 0.15 version range, so checkout an appropriate revision
|
||||||
of the repository, and install as follows:
|
of the repository, and install as follows:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
git clone https://github.com/grpc/grpc.git
|
git clone https://github.com/grpc/grpc.git
|
||||||
git checkout 2b223977c13975648bac2f422363e1ebf83506ce
|
git checkout release-0_15_1
|
||||||
cd grpc
|
cd grpc
|
||||||
git submodule update --init
|
git submodule update --init
|
||||||
make
|
make
|
||||||
|
@ -36,8 +36,8 @@ in pkgs.stdenv.mkDerivation rec
|
||||||
{ name = "grpc";
|
{ name = "grpc";
|
||||||
src = pkgs.fetchgit
|
src = pkgs.fetchgit
|
||||||
{ url = "https://github.com/grpc/grpc.git";
|
{ url = "https://github.com/grpc/grpc.git";
|
||||||
rev = "2b223977c13975648bac2f422363e1ebf83506ce";
|
rev = "674b30373e2d6a1e26425952805179f8d52a8c00";
|
||||||
sha256 = "0arxjdczgj6rbg14f6x24863mrz0xgpakmdfg54zp0xp7h2pghm6";
|
sha256 = "05vj48w4h7bn6xyf1wyg2l6psl38h4yz6j1cl0yd2p5h7f5hb3s7";
|
||||||
};
|
};
|
||||||
preInstall = "export prefix";
|
preInstall = "export prefix";
|
||||||
buildInputs =
|
buildInputs =
|
||||||
|
|
Loading…
Reference in a new issue