about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ptime
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2021-12-08 22:00:13 +0000
committerThiago Kenji Okada <thiagokokada@gmail.com>2022-04-09 19:50:52 +0100
commit6dd377e367e011f365e558b0039a8bf67d250961 (patch)
tree519aa3be2f4c6f0dcfdc0fe7c6f50522837ebb34 /pkgs/development/ocaml-modules/ptime
parent918a14988814948fc60ae69c830a00f72a91dbf4 (diff)
ocamlPackages.ptime: 0.8.5 -> 0.8.6
Co-authored-by: sternenseemann <sternenseemann@systemli.org>
Diffstat (limited to 'pkgs/development/ocaml-modules/ptime')
-rw-r--r--pkgs/development/ocaml-modules/ptime/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/ptime/default.nix b/pkgs/development/ocaml-modules/ptime/default.nix
index ac30876520a65..169cf4ce16f5a 100644
--- a/pkgs/development/ocaml-modules/ptime/default.nix
+++ b/pkgs/development/ocaml-modules/ptime/default.nix
@@ -1,14 +1,16 @@
-{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, result, js_of_ocaml
+{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, js_of_ocaml
 , jsooSupport ? true
 }:
 
 stdenv.mkDerivation rec {
-  version = "0.8.5";
+  version = "0.8.6";
   pname = "ocaml${ocaml.version}-ptime";
 
+  minimalOCamlVersion = "4.03";
+
   src = fetchurl {
     url = "https://erratique.ch/software/ptime/releases/ptime-${version}.tbz";
-    sha256 = "1fxq57xy1ajzfdnvv5zfm7ap2nf49znw5f9gbi4kb9vds942ij27";
+    sha256 = "sha256-gy/fUsfUHUZx1A/2sQMQIFMHl1V+QO3zHAsEnZT/lkI=";
   };
 
   nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
@@ -16,8 +18,6 @@ stdenv.mkDerivation rec {
 
   strictDeps = true;
 
-  propagatedBuildInputs = [ result ];
-
   buildPhase = "${topkg.run} build --with-js_of_ocaml ${lib.boolToString jsooSupport}";
 
   inherit (topkg) installPhase;