mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-14 23:29:42 +01:00
43 lines
1.8 KiB
Nix
43 lines
1.8 KiB
Nix
{ mkDerivation, aeson, aeson-pretty, attoparsec, base
|
|
, base64-bytestring, binary, bytestring, cereal, containers
|
|
, contravariant, deepseq, doctest, fetchgit, filepath, foldl
|
|
, hashable, haskell-src, insert-ordered-containers, lens, mtl
|
|
, neat-interpolation, optparse-generic, parsec, parsers, pretty
|
|
, pretty-show, proto3-wire, QuickCheck, quickcheck-instances
|
|
, range-set-list, safe, semigroups, stdenv, swagger2
|
|
, system-filepath, tasty, tasty-hunit, tasty-quickcheck, text
|
|
, transformers, turtle, vector
|
|
}:
|
|
mkDerivation {
|
|
pname = "proto3-suite";
|
|
version = "0.3.0.0";
|
|
src = fetchgit {
|
|
url = "https://github.com/awakesecurity/proto3-suite.git";
|
|
sha256 = "0b4akw6m6d1vyihv3vwbjlj2wczmjy0q9avfbv9p099aav3g9b4i";
|
|
rev = "a05d6a35d514f047daf71c75ef990004792892bd";
|
|
fetchSubmodules = true;
|
|
};
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
enableSeparateDataOutput = true;
|
|
libraryHaskellDepends = [
|
|
aeson aeson-pretty attoparsec base base64-bytestring binary
|
|
bytestring cereal containers contravariant deepseq filepath foldl
|
|
hashable haskell-src insert-ordered-containers lens mtl
|
|
neat-interpolation parsec parsers pretty pretty-show proto3-wire
|
|
QuickCheck quickcheck-instances 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
|
|
containers doctest pretty-show proto3-wire QuickCheck semigroups
|
|
swagger2 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;
|
|
}
|