about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-01-29 10:53:53 +0100
committerGitHub <noreply@github.com>2023-01-29 10:53:53 +0100
commitfeac9563b403d17bd08d869baaf91c6764cb902a (patch)
treeee8b568dfa3df5622716235fc2f6434880189475 /pkgs
parentdcc504883109ea44b4721ea093f84b58f52314dd (diff)
parent5b360aa5a4f9dc7e0e053461ba8b21b6db3df735 (diff)
downloadnixlib-feac9563b403d17bd08d869baaf91c6764cb902a.tar
nixlib-feac9563b403d17bd08d869baaf91c6764cb902a.tar.gz
nixlib-feac9563b403d17bd08d869baaf91c6764cb902a.tar.bz2
nixlib-feac9563b403d17bd08d869baaf91c6764cb902a.tar.lz
nixlib-feac9563b403d17bd08d869baaf91c6764cb902a.tar.xz
nixlib-feac9563b403d17bd08d869baaf91c6764cb902a.tar.zst
nixlib-feac9563b403d17bd08d869baaf91c6764cb902a.zip
Merge pull request #213309 from vbgl/ocaml-ca-certs-nss-3.86
ocamlPackages.ca-certs-nss: 3.77 → 3.86
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/ca-certs-nss/default.nix9
-rw-r--r--pkgs/development/ocaml-modules/x509/default.nix4
2 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/ca-certs-nss/default.nix b/pkgs/development/ocaml-modules/ca-certs-nss/default.nix
index 3e5119b1739e..73f6838501a6 100644
--- a/pkgs/development/ocaml-modules/ca-certs-nss/default.nix
+++ b/pkgs/development/ocaml-modules/ca-certs-nss/default.nix
@@ -14,17 +14,16 @@
 
 buildDunePackage rec {
   pname = "ca-certs-nss";
-  version = "3.77";
+  version = "3.86";
 
-  minimumOCamlVersion = "4.08";
+  minimalOCamlVersion = "4.08";
+  duneVersion = "3";
 
   src = fetchurl {
     url = "https://github.com/mirage/ca-certs-nss/releases/download/v${version}/ca-certs-nss-${version}.tbz";
-    sha256 = "sha256-Ezos9A2AQOo43R9akVbJ5l+euTDtguzMfH63YXo9hvc=";
+    hash = "sha256-3b20vYBP9T2uR17Vxyilfs/9C72WVUrgR7T582V++lQ=";
   };
 
-  useDune2 = true;
-
   propagatedBuildInputs = [
     mirage-crypto
     mirage-clock
diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix
index 91a478df8844..9bfe9489444c 100644
--- a/pkgs/development/ocaml-modules/x509/default.nix
+++ b/pkgs/development/ocaml-modules/x509/default.nix
@@ -10,9 +10,11 @@ buildDunePackage rec {
   pname = "x509";
   version = "0.16.2";
 
+  duneVersion = "3";
+
   src = fetchurl {
     url = "https://github.com/mirleft/ocaml-x509/releases/download/v${version}/x509-${version}.tbz";
-    sha256 = "sha256-Zf/ZZjUAkeWe04XLmqMKgbxN/qe/Z1mpKM82veXVf2I=";
+    hash = "sha256-Zf/ZZjUAkeWe04XLmqMKgbxN/qe/Z1mpKM82veXVf2I=";
   };
 
   nativeCheckInputs = [ alcotest cstruct-unix ];