mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
9ad7623ebe
Co-authored-by: Et7f3 <cadeaudeelie@gmail.com>
24 lines
717 B
Nix
24 lines
717 B
Nix
{ lib, fetchurl, buildDunePackage, camlp-streams, easy-format }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "biniou";
|
|
version = "1.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ocaml-community/biniou/releases/download/${version}/biniou-${version}.tbz";
|
|
hash = "sha256-i/P/F80Oyy1rbR2UywjvCJ1Eyu+W6brmvmg51Cj6MY8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ camlp-streams easy-format ];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = {
|
|
description = "Binary data format designed for speed, safety, ease of use and backward compatibility as protocols evolve";
|
|
homepage = "https://github.com/ocaml-community/biniou";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
mainProgram = "bdump";
|
|
};
|
|
}
|