Loading pkgs/development/ocaml-modules/type_eq/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/ocaml-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/ocaml-modules/type_eq/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/ocaml-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading