mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59: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
37 lines
1.5 KiB
Nix
37 lines
1.5 KiB
Nix
{ mkDerivation, aeson, aeson-pretty, attoparsec, base
|
|
, base64-bytestring, bytestring, cereal, containers, deepseq
|
|
, doctest, fetchgit, foldl, haskell-src, lens, mtl
|
|
, neat-interpolation, optparse-generic, parsec, parsers, pretty
|
|
, pretty-show, proto3-wire, QuickCheck, range-set-list, safe
|
|
, semigroups, stdenv, swagger2, system-filepath, 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";
|
|
sha256 = "076fh739580vp9h23d4zw3mddmd0md39c7k4x8macwy502wgdf1j";
|
|
rev = "97c4f66c8972416cca8b0bd1d9b307863bbc82e2";
|
|
};
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
aeson aeson-pretty attoparsec base base64-bytestring bytestring
|
|
cereal containers deepseq foldl haskell-src lens mtl
|
|
neat-interpolation parsec parsers pretty pretty-show proto3-wire
|
|
QuickCheck safe semigroups swagger2 system-filepath text
|
|
transformers turtle vector
|
|
];
|
|
executableHaskellDepends = [
|
|
base containers optparse-generic proto3-wire range-set-list
|
|
system-filepath text turtle
|
|
];
|
|
testHaskellDepends = [
|
|
aeson attoparsec base base64-bytestring bytestring cereal doctest
|
|
pretty-show proto3-wire QuickCheck semigroups 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;
|
|
}
|