python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-flow / default.nix
blobbc987eff9884afca4ecf3b908bdbf36d5c295048
1 { lib, buildDunePackage, fetchurl, cstruct, fmt, ocaml_lwt }:
3 buildDunePackage rec {
4   pname = "mirage-flow";
5   version = "3.0.0";
7   useDune2 = true;
8   minimumOCamlVersion = "4.05";
10   src = fetchurl {
11     url = "https://github.com/mirage/mirage-flow/releases/download/v${version}/mirage-flow-v${version}.tbz";
12     sha256 = "sha256-1wvabIXsJ0e+2IvE2V8mnSgQUDuSkT8IB75SkWlhOPw=";
13   };
15   propagatedBuildInputs = [ cstruct fmt ocaml_lwt ];
17   meta = {
18     description = "Flow implementations and combinators for MirageOS";
19     homepage = "https://github.com/mirage/mirage-flow";
20     license = lib.licenses.isc;
21     maintainers = [ lib.maintainers.vbgl ];
22   };