mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
4ab231c1d9
* Update `proto3-suite` gitrev in `stack.yaml` to `8db2ceb8c48a3f8dc2cbdc492d1e8cbaf8b62a15` * Update `proto3-suite` gitrev in `nix/proto3-suite.nix` to `8db2ceb8c48a3f8dc2cbdc492d1e8cbaf8b62a15` * Regenerate `Echo.hs` via new `proto3-suite` + `compile-proto-file` * Remove additional warnings
25 lines
1 KiB
Nix
25 lines
1 KiB
Nix
{ mkDerivation, base, bytestring, cereal, containers, deepseq
|
|
, fetchgit, filepath, haskell-src, mtl, parsec, parsers, pipes
|
|
, pretty, proto3-wire, QuickCheck, safe, semigroups, stdenv, tasty
|
|
, tasty-hunit, tasty-quickcheck, text, transformers, turtle, vector
|
|
}:
|
|
mkDerivation {
|
|
pname = "proto3-suite";
|
|
version = "0.1.0.0";
|
|
src = fetchgit {
|
|
url = "https://github.com/awakenetworks/proto3-suite.git";
|
|
sha256 = "1g6w4ddqybgwnj3143bkl7sp9f5ch6d8qpb242fi4m396585bpq9";
|
|
rev = "8db2ceb8c48a3f8dc2cbdc492d1e8cbaf8b62a15";
|
|
};
|
|
libraryHaskellDepends = [
|
|
base bytestring cereal containers deepseq filepath haskell-src mtl
|
|
parsec parsers pipes pretty proto3-wire QuickCheck safe semigroups
|
|
text transformers vector
|
|
];
|
|
testHaskellDepends = [
|
|
base bytestring cereal proto3-wire QuickCheck semigroups tasty
|
|
tasty-hunit tasty-quickcheck text transformers turtle
|
|
];
|
|
description = "A low level library for writing out data in the Protocol Buffers wire format";
|
|
license = stdenv.lib.licenses.asl20;
|
|
}
|