Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / biniou / default.nix
blob2c58a4081401b2c487f382491161f2629e21e9a8
1 { lib, fetchurl, buildDunePackage, camlp-streams, easy-format }:
3 buildDunePackage rec {
4   pname = "biniou";
5   version = "1.2.2";
7   src = fetchurl {
8     url = "https://github.com/ocaml-community/biniou/releases/download/${version}/biniou-${version}.tbz";
9     hash = "sha256-i/P/F80Oyy1rbR2UywjvCJ1Eyu+W6brmvmg51Cj6MY8=";
10   };
12   propagatedBuildInputs = [ camlp-streams easy-format ];
14   meta = {
15     description = "Binary data format designed for speed, safety, ease of use and backward compatibility as protocols evolve";
16     homepage = "https://github.com/ocaml-community/biniou";
17     license = lib.licenses.bsd3;
18     maintainers = [ lib.maintainers.vbgl ];
19     mainProgram = "bdump";
20   };