mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-15 07:39:43 +01:00
6e09678dc7
* Upgrade nixpkgs to the latest nixpkgs-unstable * Bump proto3-suite
44 lines
1.9 KiB
Nix
44 lines
1.9 KiB
Nix
{ mkDerivation, aeson, aeson-pretty, attoparsec, base
|
|
, base64-bytestring, binary, bytestring, cereal, containers
|
|
, contravariant, deepseq, doctest, fetchgit, filepath, foldl
|
|
, generic-arbitrary, hashable, haskell-src
|
|
, insert-ordered-containers, lens, mtl, neat-interpolation
|
|
, optparse-applicative, 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.4.0.0";
|
|
src = fetchgit {
|
|
url = "https://github.com/awakesecurity/proto3-suite";
|
|
sha256 = "0g7j7axx9rkrzw32ky9xl08zj34rx4mqafd89lrpnsi8lcq2z06j";
|
|
rev = "3f6dd6f612cf2eba3c05798926ff924b0d5ab4fa";
|
|
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 mtl optparse-applicative optparse-generic
|
|
proto3-wire range-set-list system-filepath text turtle
|
|
];
|
|
testHaskellDepends = [
|
|
aeson attoparsec base base64-bytestring bytestring cereal
|
|
containers deepseq doctest generic-arbitrary mtl 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;
|
|
}
|