mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
fe55845d3f
* Squash merge from branch `joel-fix-build-issues-and-broken-tests` * Update `proto3-wire` and `proto3-suite` refs in `stack.yaml` * Update `proto3-wire` and `proto3-suite` refs via `cabal2nix` for `nix` builds * Remove `compile-proto-file` from the repo, as it is now available via `proto3-suite` * Update `proto3-suite` ref in `stack.yaml` * Update `proto3-suite` ref via `cabal2nix` for `nix` builds * Update `proto3-suite` and `proto3-wire` gitrevs * Regenerate Echo and Arithmetic example modules from their respective .protos * Fix typo
23 lines
843 B
Nix
23 lines
843 B
Nix
{ mkDerivation, base, bytestring, cereal, containers, deepseq
|
|
, doctest, fetchgit, hashable, QuickCheck, safe, stdenv, tasty
|
|
, tasty-hunit, tasty-quickcheck, text, unordered-containers
|
|
}:
|
|
mkDerivation {
|
|
pname = "proto3-wire";
|
|
version = "1.0.0";
|
|
src = fetchgit {
|
|
url = "https://github.com/awakenetworks/proto3-wire";
|
|
sha256 = "1979pccp8c8wvl69r203mji51c8s59mccng6zrw3kf2s1wz5xxqg";
|
|
rev = "8178cc717eb1c438272a7f451862590a8b2d41ff";
|
|
};
|
|
libraryHaskellDepends = [
|
|
base bytestring cereal containers deepseq hashable QuickCheck safe
|
|
text unordered-containers
|
|
];
|
|
testHaskellDepends = [
|
|
base bytestring cereal doctest QuickCheck tasty tasty-hunit
|
|
tasty-quickcheck text
|
|
];
|
|
description = "A low-level implementation of the Protocol Buffers (version 3) wire format";
|
|
license = stdenv.lib.licenses.asl20;
|
|
}
|