2017-11-02 21:36:57 +01:00
|
|
|
{ mkDerivation, aeson, aeson-pretty, attoparsec, base
|
2018-04-20 22:37:12 +02:00
|
|
|
, base64-bytestring, binary, bytestring, cereal, containers
|
2019-06-18 21:51:25 +02:00
|
|
|
, contravariant, deepseq, doctest, fetchgit, filepath, foldl
|
2019-08-20 17:47:32 +02:00
|
|
|
, 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
|
2020-11-16 18:43:28 +01:00
|
|
|
, range-set-list, safe, stdenv, swagger2, system-filepath, tasty
|
|
|
|
, tasty-hunit, tasty-quickcheck, text, transformers, turtle, vector
|
2016-12-12 19:40:23 +01:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
2017-02-27 17:43:37 +01:00
|
|
|
pname = "proto3-suite";
|
2020-11-16 18:43:28 +01:00
|
|
|
version = "0.4.2.0";
|
2016-12-12 19:40:23 +01:00
|
|
|
src = fetchgit {
|
2020-11-16 18:43:28 +01:00
|
|
|
url = "https://github.com/awakesecurity/proto3-suite.git";
|
|
|
|
sha256 = "0mpy35r6qd1v5sixhy2lqcn5x81rfj4dc079g1kpa4fb1f23dbha";
|
|
|
|
rev = "0af901f9ef3b9719e08eae4fab8fd700d6c8047a";
|
2019-06-18 21:51:25 +02:00
|
|
|
fetchSubmodules = true;
|
2016-12-12 19:40:23 +01:00
|
|
|
};
|
2017-07-18 03:42:35 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2018-04-20 22:37:12 +02:00
|
|
|
enableSeparateDataOutput = true;
|
2016-12-12 19:40:23 +01:00
|
|
|
libraryHaskellDepends = [
|
2018-04-20 22:37:12 +02:00
|
|
|
aeson aeson-pretty attoparsec base base64-bytestring binary
|
2019-06-18 21:51:25 +02:00
|
|
|
bytestring cereal containers contravariant deepseq filepath foldl
|
|
|
|
hashable haskell-src insert-ordered-containers lens mtl
|
|
|
|
neat-interpolation parsec parsers pretty pretty-show proto3-wire
|
2020-11-16 18:43:28 +01:00
|
|
|
QuickCheck quickcheck-instances safe swagger2 system-filepath text
|
|
|
|
transformers turtle vector
|
2017-07-18 03:42:35 +02:00
|
|
|
];
|
|
|
|
executableHaskellDepends = [
|
2019-06-18 21:51:25 +02:00
|
|
|
base containers mtl optparse-applicative optparse-generic
|
|
|
|
proto3-wire range-set-list system-filepath text turtle
|
2016-12-12 19:40:23 +01:00
|
|
|
];
|
|
|
|
testHaskellDepends = [
|
2019-06-18 21:51:25 +02:00
|
|
|
aeson attoparsec base base64-bytestring bytestring cereal
|
2019-08-20 17:47:32 +02:00
|
|
|
containers deepseq doctest generic-arbitrary mtl pretty-show
|
2020-11-16 18:43:28 +01:00
|
|
|
proto3-wire QuickCheck swagger2 tasty tasty-hunit tasty-quickcheck
|
|
|
|
text transformers turtle vector
|
2016-12-12 19:40:23 +01:00
|
|
|
];
|
|
|
|
description = "A low level library for writing out data in the Protocol Buffers wire format";
|
2017-02-27 17:43:37 +01:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
2016-12-12 19:40:23 +01:00
|
|
|
}
|