python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / hex / default.nix
blob4a6123ebd3a66c8ceb59fea23e6cd20ee0e761df
1 { lib, fetchurl, buildDunePackage, bigarray-compat, cstruct }:
3 buildDunePackage rec {
4   pname = "hex";
5   version = "1.4.0";
7   useDune2 = true;
9   minimumOCamlVersion = "4.02";
11   src = fetchurl {
12     url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/hex-v${version}.tbz";
13     sha256 = "07b9y0lmnflsslkrm6xilkj40n8sf2hjqkyqghnk7sw5l0plkqsp";
14   };
16   propagatedBuildInputs = [ bigarray-compat cstruct ];
17   doCheck = true;
19   meta = {
20     description = "Mininal OCaml library providing hexadecimal converters";
21     homepage = "https://github.com/mirage/ocaml-hex";
22     license = lib.licenses.isc;
23     maintainers = with lib.maintainers; [ vbgl ];
24   };