Commit 35092bf1 authored by Vincent Laporte's avatar Vincent Laporte Committed by Vincent Laporte
Browse files

ocamlPackages.mtime_1: remove

parent cd711ad7
Loading
Loading
Loading
Loading
+0 −22
Original line number Diff line number Diff line
{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, mtime }:

lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08")
  "mtime is not available for OCaml ${ocaml.version}"

stdenv.mkDerivation rec {
  pname = "ocaml${ocaml.version}-mtime";
  version = "1.4.0";

  src = fetchurl {
    url = "https://erratique.ch/software/mtime/releases/mtime-${version}.tbz";
    sha256 = "VQyYEk8+57Yq8SUuYossaQUHZKqemHDJtf4LK8qjxvc=";
  };

  nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
  buildInputs = [ topkg ];

  strictDeps = true;

  inherit (topkg) buildPhase installPhase;
  inherit (mtime) meta;
}
+1 −2
Original line number Diff line number Diff line
@@ -1184,7 +1184,6 @@ let

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

    mtime_1 =  callPackage ../development/ocaml-modules/mtime/1_x.nix { };
    mtime =  callPackage ../development/ocaml-modules/mtime { };

    multipart-form-data =  callPackage ../development/ocaml-modules/multipart-form-data { };
@@ -1385,7 +1384,7 @@ let
      inherit (pkgs) unzip;
    };

    opium = callPackage ../development/ocaml-modules/opium { mtime = mtime_1; };
    opium = callPackage ../development/ocaml-modules/opium { };

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