Commit 33546d99 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.ohex: init at 0.2.0

parent 6d59693e
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{
  lib,
  fetchurl,
  buildDunePackage,
  alcotest,
}:

buildDunePackage rec {
  pname = "ohex";
  version = "0.2.0";

  src = fetchurl {
    url = "https://github.com/ocaml/opam-source-archives/raw/main/ohex-${version}.tar.gz";
    hash = "sha256-prV7rbo0sAx3S2t4YtjniJEVq43uLXK8ZMsqoMzn2Ow=";
  };

  doCheck = true;
  checkInputs = [ alcotest ];

  meta = {
    description = "Hexadecimal encoding and decoding";
    license = lib.licenses.bsd2;
    maintainers = [ lib.maintainers.vbgl ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1407,6 +1407,8 @@ let

    ogg = callPackage ../development/ocaml-modules/ogg { };

    ohex = callPackage ../development/ocaml-modules/ohex { };

    ojs = callPackage ../development/ocaml-modules/gen_js_api/ojs.nix { };

    omd = callPackage ../development/ocaml-modules/omd { };