mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-14 23:29:42 +01:00
6382857e2c
* .gitignore * release.nix: Minor cleanup * Fix warning * Expose max receive message length channel arg in `ServiceOptions` * Fix warning * Bump upstream dependencies and patch parameterized-0.5.0.0 * grpc-haskell 0.0.1.0 -> 0.0.2.0
43 lines
1.8 KiB
Nix
43 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, mtl, neat-interpolation
|
|
, optparse-applicative, optparse-generic, parsec, parsers, pretty
|
|
, pretty-show, proto3-wire, QuickCheck, quickcheck-instances
|
|
, range-set-list, safe, stdenv, swagger2, system-filepath, tasty
|
|
, tasty-hunit, tasty-quickcheck, text, transformers, turtle, vector
|
|
}:
|
|
mkDerivation {
|
|
pname = "proto3-suite";
|
|
version = "0.4.2.0";
|
|
src = fetchgit {
|
|
url = "https://github.com/awakesecurity/proto3-suite.git";
|
|
sha256 = "0mpy35r6qd1v5sixhy2lqcn5x81rfj4dc079g1kpa4fb1f23dbha";
|
|
rev = "0af901f9ef3b9719e08eae4fab8fd700d6c8047a";
|
|
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
|
|
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 low level library for writing out data in the Protocol Buffers wire format";
|
|
license = stdenv.lib.licenses.asl20;
|
|
}
|