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
|
|
|
|
, 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
|
2018-04-20 22:37:12 +02:00
|
|
|
, 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";
|
2019-06-18 21:51:25 +02:00
|
|
|
version = "0.4.0.0";
|
2016-12-12 19:40:23 +01:00
|
|
|
src = fetchgit {
|
2018-04-20 22:37:12 +02:00
|
|
|
url = "https://github.com/awakesecurity/proto3-suite.git";
|
2019-06-18 21:51:25 +02:00
|
|
|
sha256 = "091db048hgcq5idvf5gaiqb6hzbs7g1dz6xjqdx61dw2yxgdm957";
|
|
|
|
rev = "973c317b91405a11438e3a21706024bfa3d754df";
|
|
|
|
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
|
|
|
|
QuickCheck quickcheck-instances safe semigroups 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
|
|
|
|
containers deepseq doctest mtl pretty-show proto3-wire QuickCheck
|
|
|
|
semigroups 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
|
|
|
}
|