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";
|
|
|
|
version = "1.0.0";
|
|
|
|
src = fetchgit {
|
2017-11-02 21:36:57 +01:00
|
|
|
url = "https://github.com/awakenetworks/proto3-wire.git";
|
2019-05-21 03:56:21 +02:00
|
|
|
sha256 = "0ddza0s9ms51nb5qk97h8wj2p1bqpwwrfdv9fzdc5xf48khzmxki";
|
|
|
|
rev = "43d8220dbc64ef7cc7681887741833a47b61070f";
|
|
|
|
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;
|
|
|
|
}
|