about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ca-certs
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-03-21 03:59:57 +0000
committersterni <sternenseemann@systemli.org>2022-03-21 18:20:12 +0100
commit17a43eefb8c67195e8839da3ddaee448eec2369f (patch)
tree9fa0f1d1536ea755930ac8b5b5a681343f6da0bc /pkgs/development/ocaml-modules/ca-certs
parent857e2fe41fa3f3acb37089fbcf53726e56cc54f1 (diff)
ocamlPackages.ca-certs: 0.2.1 -> 0.2.2
https://github.com/mirage/ca-certs/releases/tag/v0.2.2
Diffstat (limited to 'pkgs/development/ocaml-modules/ca-certs')
-rw-r--r--pkgs/development/ocaml-modules/ca-certs/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/ca-certs/default.nix b/pkgs/development/ocaml-modules/ca-certs/default.nix
index ce8993b465ebe..0805edbafe848 100644
--- a/pkgs/development/ocaml-modules/ca-certs/default.nix
+++ b/pkgs/development/ocaml-modules/ca-certs/default.nix
@@ -1,28 +1,29 @@
 { lib, buildDunePackage, fetchurl
-, bos, fpath, rresult, ptime, mirage-crypto, x509, astring, logs
-, cacert, alcotest
+, bos, fpath, ptime, mirage-crypto, x509, astring, logs
+, cacert, alcotest, fmt
 }:
 
 buildDunePackage rec {
   pname = "ca-certs";
-  version = "0.2.1";
+  version = "0.2.2";
 
   minimumOCamlVersion = "4.07";
 
   src = fetchurl {
     url = "https://github.com/mirage/ca-certs/releases/download/v${version}/ca-certs-v${version}.tbz";
-    sha256 = "d43109496a5129feff967d557c556af96f8b10456896a405c43b7cf0c35d0af3";
+    sha256 = "sha256-Tx53zBJemZh3ODh/8izahxDoJvXvNFLyAA8LMM1mhlI=";
   };
 
   useDune2 = true;
 
-  propagatedBuildInputs = [ bos fpath rresult ptime mirage-crypto x509 astring logs ];
+  propagatedBuildInputs = [ bos fpath ptime mirage-crypto x509 astring logs ];
 
   # Assumes nss-cacert < 3.74 https://github.com/mirage/ca-certs/issues/21
   doCheck = false;
   checkInputs = [
     cacert    # for /etc/ssl/certs/ca-bundle.crt
     alcotest
+    fmt
   ];
 
   meta = with lib; {