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.
44 lines
1.8 KiB
Nix
44 lines
1.8 KiB
Nix
{ mkDerivation, aeson, aeson-pretty, attoparsec, base
|
|
, base64-bytestring, binary, bytestring, cereal, containers
|
|
, contravariant, deepseq, doctest, fetchgit, filepath, foldl
|
|
, generic-arbitrary, hashable, haskell-src
|
|
, insert-ordered-containers, lens, lib, mtl, neat-interpolation
|
|
, optparse-applicative, optparse-generic, parsec, parsers, pretty
|
|
, pretty-show, proto3-wire, QuickCheck, quickcheck-instances
|
|
, range-set-list, safe, swagger2, system-filepath, tasty
|
|
, tasty-hunit, tasty-quickcheck, text, time, transformers, turtle
|
|
, vector
|
|
}:
|
|
mkDerivation {
|
|
pname = "proto3-suite";
|
|
version = "0.4.3";
|
|
src = fetchgit {
|
|
url = "https://github.com/awakesecurity/proto3-suite.git";
|
|
sha256 = "0bjqczi6wddxv0n7qmfbrr19ajgq66xdkxx8vfcgbmv8ygma3vlw";
|
|
rev = "7af7d76dcf9cc71ddada3aa4a38abf46f65550ca";
|
|
fetchSubmodules = true;
|
|
};
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
enableSeparateDataOutput = true;
|
|
libraryHaskellDepends = [
|
|
aeson aeson-pretty attoparsec base base64-bytestring binary
|
|
bytestring cereal containers contravariant deepseq filepath foldl
|
|
hashable haskell-src insert-ordered-containers lens mtl
|
|
neat-interpolation parsec parsers pretty pretty-show proto3-wire
|
|
QuickCheck quickcheck-instances safe swagger2 system-filepath text
|
|
time transformers turtle vector
|
|
];
|
|
executableHaskellDepends = [
|
|
base containers mtl optparse-applicative optparse-generic
|
|
proto3-wire range-set-list system-filepath text turtle
|
|
];
|
|
testHaskellDepends = [
|
|
aeson attoparsec base base64-bytestring bytestring cereal
|
|
containers deepseq doctest generic-arbitrary mtl pretty-show
|
|
proto3-wire QuickCheck swagger2 tasty tasty-hunit tasty-quickcheck
|
|
text transformers turtle vector
|
|
];
|
|
description = "A higher-level API to the proto3-wire library";
|
|
license = lib.licenses.asl20;
|
|
}
|