python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-protocols / default.nix
blob9f144bd2d7ee777ff3b830fd08c0491dad15842c
1 { lib, buildDunePackage, fetchurl, duration, ipaddr, mirage-device, mirage-flow }:
3 buildDunePackage rec {
4   pname = "mirage-protocols";
5   version = "5.0.0";
7   useDune2 = true;
9   src = fetchurl {
10     url = "https://github.com/mirage/mirage-protocols/releases/download/v${version}/mirage-protocols-v${version}.tbz";
11     sha256 = "1bd6zgxhq2qliyzzarfvaj3ksr20ryghxq6h24i2hha7rwim63bk";
12   };
14   propagatedBuildInputs = [ duration ipaddr mirage-device mirage-flow ];
16   meta = {
17     description = "MirageOS signatures for network protocols";
18     homepage = "https://github.com/mirage/mirage-protocols";
19     license = lib.licenses.isc;
20     maintainers = [ lib.maintainers.vbgl ];
21   };