lol

ocamlPackages.mtime_1: remove

authored by

Vincent Laporte and committed by
Vincent Laporte
35092bf1 cd711ad7

+1 -24
-22
pkgs/development/ocaml-modules/mtime/1_x.nix
··· 1 - { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, mtime }: 2 - 3 - lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") 4 - "mtime is not available for OCaml ${ocaml.version}" 5 - 6 - stdenv.mkDerivation rec { 7 - pname = "ocaml${ocaml.version}-mtime"; 8 - version = "1.4.0"; 9 - 10 - src = fetchurl { 11 - url = "https://erratique.ch/software/mtime/releases/mtime-${version}.tbz"; 12 - sha256 = "VQyYEk8+57Yq8SUuYossaQUHZKqemHDJtf4LK8qjxvc="; 13 - }; 14 - 15 - nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ]; 16 - buildInputs = [ topkg ]; 17 - 18 - strictDeps = true; 19 - 20 - inherit (topkg) buildPhase installPhase; 21 - inherit (mtime) meta; 22 - }
+1 -2
pkgs/top-level/ocaml-packages.nix
··· 1184 1184 1185 1185 msat = callPackage ../development/ocaml-modules/msat { }; 1186 1186 1187 - mtime_1 = callPackage ../development/ocaml-modules/mtime/1_x.nix { }; 1188 1187 mtime = callPackage ../development/ocaml-modules/mtime { }; 1189 1188 1190 1189 multipart-form-data = callPackage ../development/ocaml-modules/multipart-form-data { }; ··· 1385 1384 inherit (pkgs) unzip; 1386 1385 }; 1387 1386 1388 - opium = callPackage ../development/ocaml-modules/opium { mtime = mtime_1; }; 1387 + opium = callPackage ../development/ocaml-modules/opium { }; 1389 1388 1390 1389 opti = callPackage ../development/ocaml-modules/opti { }; 1391 1390