Commit 3f97f7af authored by Trent Small's avatar Trent Small Committed by Vincent Laporte
Browse files

ocamlPackages.type_eq: init at 0.0.1

parent aa7e5cc7
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
{ lib
, buildDunePackage
, fetchurl
, alcotest
}:

buildDunePackage rec {
  pname = "type_eq";
  version = "0.0.1";

  minimalOCamlVersion = "4.08.1";

  src = fetchurl {
    url = "https://github.com/skolemlabs/type_eq/releases/download/${version}/${pname}-${version}.tbz";
    hash = "sha256-eFVZJJfU6hfb8vKNXOZLZ1cHcsDdzFUerbh2RZBt0Zk=";
  };

  checkInputs = [
    alcotest
  ];

  doCheck = true;

  meta = {
    description = "Type equality proofs for OCaml 4";
    homepage = "https://github.com/skolemlabs/type_eq";
    changelog = "https://github.com/skolemlabs/type_eq/blob/${version}/CHANGES.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sixstring982 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1799,6 +1799,8 @@ let

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

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

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

    tyxml-lwd = callPackage ../development/ocaml-modules/lwd/tyxml-lwd.nix { };