2016-12-12 19:40:23 +01:00
|
|
|
{ mkDerivation, base, bytestring, cereal, containers, deepseq
|
2022-02-25 23:23:22 +01:00
|
|
|
, doctest, ghc-prim, hashable, lib, parameterized, primitive
|
|
|
|
, QuickCheck, safe, tasty, tasty-hunit, tasty-quickcheck, text
|
|
|
|
, transformers, unordered-containers, vector
|
2016-12-12 19:40:23 +01:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "proto3-wire";
|
2022-02-25 23:23:22 +01:00
|
|
|
version = "1.2.2";
|
|
|
|
sha256 = "8d409536a89a0187f0576711966d2ef45d43acab7b6a3a1c5ee12f6d01adbfb9";
|
2016-12-12 19:40:23 +01:00
|
|
|
libraryHaskellDepends = [
|
2020-11-16 18:43:28 +01:00
|
|
|
base bytestring cereal containers deepseq ghc-prim hashable
|
|
|
|
parameterized primitive QuickCheck safe text transformers
|
|
|
|
unordered-containers vector
|
2016-12-12 19:40:23 +01:00
|
|
|
];
|
|
|
|
testHaskellDepends = [
|
2017-07-18 03:42:35 +02:00
|
|
|
base bytestring cereal doctest QuickCheck tasty tasty-hunit
|
2020-11-16 18:43:28 +01:00
|
|
|
tasty-quickcheck text transformers vector
|
2016-12-12 19:40:23 +01:00
|
|
|
];
|
|
|
|
description = "A low-level implementation of the Protocol Buffers (version 3) wire format";
|
2022-02-25 23:23:22 +01:00
|
|
|
license = lib.licenses.asl20;
|
2016-12-12 19:40:23 +01:00
|
|
|
}
|