mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 18:59:42 +01:00
ab8ec43d17
* Update turtle, optparse-{applicative,generic}; remove stack dep from nix-shell env * Track proto3-suite changes to readDotProtoWithContext * Update proto3-suite gitrev, use `compileDotProtoFileOrDie` in `GeneratedTests` * Bump `proto3-suite` rev * Bump `proto3-suite` and `proto3-wire` gitrevs, update `stack.yaml`
23 lines
843 B
Nix
23 lines
843 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/awakesecurity/proto3-wire";
|
|
sha256 = "0pcacsz33n84rkc6yi99yq2dy4fisrhqpfbkqa3nfsjqhlw43gcf";
|
|
rev = "077b7e329fd7f43b0628c23b83c5e2e05334002e";
|
|
};
|
|
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;
|
|
}
|