ocamlPackages.type_id: Init at 0.0.1

This commit is contained in:
Trent Small 2024-02-15 09:05:40 -07:00 committed by Vincent Laporte
parent 1df767a1d4
commit 95a9c943b7
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib
, buildDunePackage
, fetchurl
, alcotest
, type_eq
}:
buildDunePackage rec {
pname = "type_id";
version = "0.0.1";
minimalOCamlVersion = "4.08.1";
src = fetchurl {
url = "https://github.com/skolemlabs/${pname}/releases/download/${version}/${pname}-${version}.tbz";
hash = "sha256-hmVAD9vgU1HLnB7d1TX17V+Alf5ZXmvQgd2nLHnLhDk=";
};
propagatedBuildInputs = [
type_eq
];
checkInputs = [
alcotest
];
doCheck = true;
meta = {
description = "Type identifiers, useful for runtime type-safe casting/coersions";
homepage = "https://github.com/skolemlabs/type_id";
changelog = "https://github.com/skolemlabs/type_id/blob/${version}/CHANGES.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sixstring982 ];
};
}

View File

@ -1815,6 +1815,8 @@ let
type_eq = callPackage ../development/ocaml-modules/type_eq { };
type_id = callPackage ../development/ocaml-modules/type_id { };
tyxml = callPackage ../development/ocaml-modules/tyxml { };
tyxml-lwd = callPackage ../development/ocaml-modules/lwd/tyxml-lwd.nix { };