depot/pkgs/development/ocaml-modules/msgpck/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
630 B
Nix

{ lib
, fetchFromGitHub
, buildDunePackage
, ocplib-endian
, alcotest
}:
buildDunePackage rec {
pname = "msgpck";
version = "1.7";
src = fetchFromGitHub {
owner = "vbmithr";
repo = "ocaml-msgpck";
rev = "${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 ];
};
}