mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-16 08:09:42 +01:00
926a9d90cf
So that applied patches always work
21 lines
820 B
Nix
21 lines
820 B
Nix
{ mkDerivation, base, bytestring, cereal, containers, deepseq
|
|
, doctest, ghc-prim, hashable, lib, parameterized, primitive
|
|
, QuickCheck, safe, tasty, tasty-hunit, tasty-quickcheck, text
|
|
, transformers, unordered-containers, vector
|
|
}:
|
|
mkDerivation {
|
|
pname = "proto3-wire";
|
|
version = "1.2.2";
|
|
sha256 = "sha256-jUCVNqiaAYfwV2cRlm0u9F1DrKt7ajocXuEvbQGtv7k=";
|
|
libraryHaskellDepends = [
|
|
base bytestring cereal containers deepseq ghc-prim hashable
|
|
parameterized primitive QuickCheck safe text transformers
|
|
unordered-containers vector
|
|
];
|
|
testHaskellDepends = [
|
|
base bytestring cereal doctest QuickCheck tasty tasty-hunit
|
|
tasty-quickcheck text transformers vector
|
|
];
|
|
description = "A low-level implementation of the Protocol Buffers (version 3) wire format";
|
|
license = lib.licenses.asl20;
|
|
}
|