2016-12-12 19:40:23 +01:00
|
|
|
{ mkDerivation, base, bytestring, cereal, containers, deepseq
|
|
|
|
, fetchgit, filepath, haskell-src, mtl, parsec, parsers, pipes
|
|
|
|
, pretty, proto3-wire, QuickCheck, safe, semigroups, stdenv, tasty
|
|
|
|
, tasty-hunit, tasty-quickcheck, text, transformers, turtle, vector
|
|
|
|
}:
|
|
|
|
mkDerivation {
|
2017-02-27 17:43:37 +01:00
|
|
|
pname = "proto3-suite";
|
2016-12-12 19:40:23 +01:00
|
|
|
version = "0.1.0.0";
|
|
|
|
src = fetchgit {
|
2017-02-27 17:43:37 +01:00
|
|
|
url = "https://github.com/awakenetworks/proto3-suite.git";
|
|
|
|
sha256 = "0wvr54x3v6g9yb30nd5g9gfnn7j8is2hl8drwmmiyz0n45zlz0qh";
|
|
|
|
rev = "827af4bf644d05e88b5d95dfe40febe7b43fab16";
|
2016-12-12 19:40:23 +01:00
|
|
|
};
|
|
|
|
libraryHaskellDepends = [
|
|
|
|
base bytestring cereal containers deepseq filepath haskell-src mtl
|
|
|
|
parsec parsers pipes pretty proto3-wire QuickCheck safe semigroups
|
|
|
|
text transformers vector
|
|
|
|
];
|
|
|
|
testHaskellDepends = [
|
|
|
|
base bytestring cereal proto3-wire QuickCheck semigroups tasty
|
|
|
|
tasty-hunit tasty-quickcheck text transformers turtle
|
|
|
|
];
|
|
|
|
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
|
|
|
}
|