biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / mtime / 1_x.nix
blobe10f2b7d7a3ba93cf8bcf24591c5c3973d71c01a
1 { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, mtime }:
3 lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08")
4   "mtime is not available for OCaml ${ocaml.version}"
6 stdenv.mkDerivation rec {
7   pname = "ocaml${ocaml.version}-mtime";
8   version = "1.4.0";
10   src = fetchurl {
11     url = "https://erratique.ch/software/mtime/releases/mtime-${version}.tbz";
12     sha256 = "VQyYEk8+57Yq8SUuYossaQUHZKqemHDJtf4LK8qjxvc=";
13   };
15   nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
16   buildInputs = [ topkg ];
18   strictDeps = true;
20   inherit (topkg) buildPhase installPhase;
21   inherit (mtime) meta;