blob: c5a0451e9229dc8a50b91c6538ee8d91b48ef666 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
fetchFromGitHub,
buildDunePackage,
ocplib-endian,
alcotest,
}:
buildDunePackage (finalAttrs: {
pname = "msgpck";
version = "1.7";
src = fetchFromGitHub {
owner = "vbmithr";
repo = "ocaml-msgpck";
rev = "${finalAttrs.version}";
hash = "sha256-gBHIiicmk/5KBkKzRKyV0ymEH8dGCZG8vfE0mtpcDCM=";
};
propagatedBuildInputs = [ ocplib-endian ];
checkInputs = [ alcotest ];
doCheck = true;
meta = {
description = "Fast MessagePack (http://msgpack.org) library";
license = lib.licenses.isc;
homepage = "https://github.com/vbmithr/ocaml-msgpck";
maintainers = [ lib.maintainers.ulrikstrid ];
};
})
|