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
39 lines
1.7 KiB
Nix
39 lines
1.7 KiB
Nix
{ mkDerivation, aeson, aeson-pretty, attoparsec, base
|
|
, base64-bytestring, binary, bytestring, cereal, containers
|
|
, contravariant, deepseq, doctest, filepath, foldl
|
|
, generic-arbitrary, hashable, haskell-src, hedgehog
|
|
, insert-ordered-containers, lens, lib, mtl, neat-interpolation
|
|
, optparse-applicative, optparse-generic, parsec, parsers, pretty
|
|
, pretty-show, proto3-wire, QuickCheck, quickcheck-instances
|
|
, range-set-list, safe, swagger2, system-filepath, tasty
|
|
, tasty-hedgehog, tasty-hunit, tasty-quickcheck, text, time
|
|
, transformers, turtle, vector
|
|
}:
|
|
mkDerivation {
|
|
pname = "proto3-suite";
|
|
version = "0.5.0";
|
|
sha256 = "sha256-lcm+En6esErjAvfycogkc7ixSXVpjdAz7dTJIIZPwCc=";
|
|
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 swagger2 system-filepath text
|
|
time 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 hedgehog mtl
|
|
pretty-show proto3-wire QuickCheck swagger2 tasty tasty-hedgehog
|
|
tasty-hunit tasty-quickcheck text transformers turtle vector
|
|
];
|
|
description = "A higher-level API to the proto3-wire library";
|
|
license = lib.licenses.asl20;
|
|
}
|