ocamlPackages.ohex: init at 0.2.0
This commit is contained in:
parent
6d59693e05
commit
33546d99d4
25
pkgs/development/ocaml-modules/ohex/default.nix
Normal file
25
pkgs/development/ocaml-modules/ohex/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user