mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-16 08:09:42 +01:00
112777023f
* Plumb the `maxMetadataSize` parameter through to the server * Update `proto3-suite` dependency * Bump proto3-wire to 1.2.2 * Re-generate Echo.hs * Regenerate `Arithmetic.hs` * Derp * Fix codegen * Update the tests for new codegen * Patch-bump to `0.2.1` * Bump to `0.3.0` to indicate a breaking API change... Suggested by @intractable.
21 lines
833 B
Nix
21 lines
833 B
Nix
{ mkDerivation, base, bytestring, cereal, containers, deepseq
|
|
, doctest, ghc-prim, hashable, lib, parameterized, primitive
|
|
, QuickCheck, safe, tasty, tasty-hunit, tasty-quickcheck, text
|
|
, transformers, unordered-containers, vector
|
|
}:
|
|
mkDerivation {
|
|
pname = "proto3-wire";
|
|
version = "1.2.2";
|
|
sha256 = "8d409536a89a0187f0576711966d2ef45d43acab7b6a3a1c5ee12f6d01adbfb9";
|
|
libraryHaskellDepends = [
|
|
base bytestring cereal containers deepseq ghc-prim hashable
|
|
parameterized primitive QuickCheck safe text transformers
|
|
unordered-containers vector
|
|
];
|
|
testHaskellDepends = [
|
|
base bytestring cereal doctest QuickCheck tasty tasty-hunit
|
|
tasty-quickcheck text transformers vector
|
|
];
|
|
description = "A low-level implementation of the Protocol Buffers (version 3) wire format";
|
|
license = lib.licenses.asl20;
|
|
}
|