mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-14 23:29:42 +01:00
19125b42be
* `proto3-suite` => `9394ade` and regenerate CG artifacts * `proto3-suite` => `56cf36f` * `proto3-wire` => `a938330` * `proto3-suite` => `e8f2acb` * Update `stack.yaml` * Update CG artifacts for Echo and Arithmetic examples * Update `stack.yaml` * `proto3-suite` => `aff63e6` and add related nix deps * Update CG artifacts for Echo and Arithmetic examples * `proto3-suite` => `97c4f66` * Nitpick: Rename test exe from `test` to `tests` * Add `.gitattributes` files to mark generated modules
23 lines
847 B
Nix
23 lines
847 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.git";
|
|
sha256 = "14n0d16an782ayipirm5v2mvp58jgf65xvffqzp08p50sksil3gi";
|
|
rev = "a938330bf794cf3fa05591d03906915df98d157c";
|
|
};
|
|
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;
|
|
}
|