mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-16 08:09:42 +01:00
22 lines
820 B
Nix
22 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;
|
||
|
}
|