2023-01-09 23:37:56 +00:00
|
|
|
{ lib, fetchurl, buildDunePackage, camlp-streams, easy-format }:
|
2014-09-21 10:02:55 +00:00
|
|
|
|
2018-11-05 10:21:46 +00:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "biniou";
|
2023-01-09 23:37:56 +00:00
|
|
|
version = "1.2.2";
|
2018-11-05 10:21:46 +00:00
|
|
|
|
2023-01-09 23:37:56 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ocaml-community/biniou/releases/download/${version}/biniou-${version}.tbz";
|
|
|
|
hash = "sha256-i/P/F80Oyy1rbR2UywjvCJ1Eyu+W6brmvmg51Cj6MY8=";
|
2018-03-01 16:48:10 +00:00
|
|
|
};
|
2017-10-06 20:23:12 +00:00
|
|
|
|
2023-01-09 23:37:56 +00:00
|
|
|
propagatedBuildInputs = [ camlp-streams easy-format ];
|
2017-10-06 20:23:12 +00:00
|
|
|
|
2018-03-01 16:48:10 +00:00
|
|
|
meta = {
|
|
|
|
description = "Binary data format designed for speed, safety, ease of use and backward compatibility as protocols evolve";
|
2023-01-09 23:37:56 +00:00
|
|
|
homepage = "https://github.com/ocaml-community/biniou";
|
2021-01-11 12:49:15 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2022-05-09 17:30:27 +00:00
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
|
|
mainProgram = "bdump";
|
2018-03-01 16:48:10 +00:00
|
|
|
};
|
2014-07-03 09:09:47 +00:00
|
|
|
}
|