2016-12-12 19:40:23 +01:00
|
|
|
{ mkDerivation, base, bytestring, cereal, containers, deepseq
|
2017-07-18 03:42:35 +02:00
|
|
|
, doctest, fetchgit, hashable, QuickCheck, safe, stdenv, tasty
|
|
|
|
, tasty-hunit, tasty-quickcheck, text, unordered-containers
|
2016-12-12 19:40:23 +01:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "proto3-wire";
|
2019-08-20 17:47:32 +02:00
|
|
|
version = "1.1.0";
|
2016-12-12 19:40:23 +01:00
|
|
|
src = fetchgit {
|
2019-08-20 17:47:32 +02:00
|
|
|
url = "https://github.com/awakesecurity/proto3-wire.git";
|
|
|
|
sha256 = "16l1rnnygwk1b2sb3l6klhr6ad0wvry204icxnc81c6rbzbk6rqc";
|
|
|
|
rev = "4f355bbac895d577d8a28f567ab4380f042ccc24";
|
|
|
|
fetchSubmodules = true;
|
2016-12-12 19:40:23 +01:00
|
|
|
};
|
|
|
|
libraryHaskellDepends = [
|
2017-07-18 03:42:35 +02:00
|
|
|
base bytestring cereal containers deepseq hashable QuickCheck safe
|
|
|
|
text unordered-containers
|
2016-12-12 19:40:23 +01:00
|
|
|
];
|
|
|
|
testHaskellDepends = [
|
2017-07-18 03:42:35 +02:00
|
|
|
base bytestring cereal doctest QuickCheck tasty tasty-hunit
|
2016-12-12 19:40:23 +01:00
|
|
|
tasty-quickcheck text
|
|
|
|
];
|
|
|
|
description = "A low-level implementation of the Protocol Buffers (version 3) wire format";
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
}
|