lol

ocamlPackages.ca-certs: 0.2.1 -> 0.2.2

https://github.com/mirage/ca-certs/releases/tag/v0.2.2

authored by

R. Ryantm and committed by
sterni
17a43eef 857e2fe4

+6 -5
+6 -5
pkgs/development/ocaml-modules/ca-certs/default.nix
··· 1 1 { lib, buildDunePackage, fetchurl 2 - , bos, fpath, rresult, ptime, mirage-crypto, x509, astring, logs 3 - , cacert, alcotest 2 + , bos, fpath, ptime, mirage-crypto, x509, astring, logs 3 + , cacert, alcotest, fmt 4 4 }: 5 5 6 6 buildDunePackage rec { 7 7 pname = "ca-certs"; 8 - version = "0.2.1"; 8 + version = "0.2.2"; 9 9 10 10 minimumOCamlVersion = "4.07"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/mirage/ca-certs/releases/download/v${version}/ca-certs-v${version}.tbz"; 14 - sha256 = "d43109496a5129feff967d557c556af96f8b10456896a405c43b7cf0c35d0af3"; 14 + sha256 = "sha256-Tx53zBJemZh3ODh/8izahxDoJvXvNFLyAA8LMM1mhlI="; 15 15 }; 16 16 17 17 useDune2 = true; 18 18 19 - propagatedBuildInputs = [ bos fpath rresult ptime mirage-crypto x509 astring logs ]; 19 + propagatedBuildInputs = [ bos fpath ptime mirage-crypto x509 astring logs ]; 20 20 21 21 # Assumes nss-cacert < 3.74 https://github.com/mirage/ca-certs/issues/21 22 22 doCheck = false; 23 23 checkInputs = [ 24 24 cacert # for /etc/ssl/certs/ca-bundle.crt 25 25 alcotest 26 + fmt 26 27 ]; 27 28 28 29 meta = with lib; {