2023-01-11 07:51:40 +00:00
|
|
|
{ lib, fetchurl, buildDunePackage, camlp-streams, easy-format }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "biniou";
|
2023-01-11 07:51:40 +00:00
|
|
|
version = "1.2.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ocaml-community/biniou/releases/download/${version}/biniou-${version}.tbz";
|
|
|
|
hash = "sha256-i/P/F80Oyy1rbR2UywjvCJ1Eyu+W6brmvmg51Cj6MY8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-01-11 07:51:40 +00:00
|
|
|
propagatedBuildInputs = [ camlp-streams easy-format ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Binary data format designed for speed, safety, ease of use and backward compatibility as protocols evolve";
|
2023-01-11 07:51:40 +00:00
|
|
|
homepage = "https://github.com/ocaml-community/biniou";
|
2021-01-15 22:18:51 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2022-05-18 14:49:53 +00:00
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
|
|
mainProgram = "bdump";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|