about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/letsencrypt/default.nix
diff options
context:
space:
mode:
authorsterni <sternenseemann@systemli.org>2021-12-30 11:05:06 +0100
committerGitHub <noreply@github.com>2021-12-30 11:05:06 +0100
commitad5271a33108fd8a766241c3d0e93dd4aa57b8e8 (patch)
treecebd3af2566c774fa8fc045f7b59e6d8dc90aedd /pkgs/development/ocaml-modules/letsencrypt/default.nix
parent59c187f2c3ebd0c19a3e029b1ede3c0aeeb1fc81 (diff)
ocamlPackages.{x509,tls}*: 0.14.1 -> 0.15.2 and related updates (#150712)
* ocamlPackages.x509: 0.14.1 -> 0.15.2

https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.0
https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.1
https://github.com/mirleft/ocaml-x509/releases/tag/v0.15.2

* ocamlPackages.awa*: 0.0.4 -> 0.0.5

https://github.com/mirage/awa-ssh/releases/tag/v0.0.5

* ocamlPackages.tls*: 0.14.1 -> 0.15.2

https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.0
https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.1
https://github.com/mirleft/ocaml-tls/releases/tag/v0.15.2

* jackline: unstable-2021-08-10 -> unstable-2021-12-28

* ocamlPackages.ca-certs-nss: 3.66 -> 3.71.0.1

https://github.com/mirage/ca-certs-nss/releases/tag/v3.71
https://github.com/mirage/ca-certs-nss/releases/tag/v3.71.0.1

* ocamlPackages.conduit*: 4.0.1 -> 4.0.2

https://github.com/mirage/ocaml-conduit/releases/tag/v4.0.2

* ocamlPackages.letsencrypt*: 0.3.0 -> 0.4.1

https://github.com/mmaker/ocaml-letsencrypt/releases/tag/v0.4.0
https://github.com/mmaker/ocaml-letsencrypt/releases/tag/v0.4.1

* ocamlPackages.paf: 0.0.5 -> 0.0.6

https://github.com/dinosaure/paf-le-chien/releases/tag/0.0.6
Diffstat (limited to 'pkgs/development/ocaml-modules/letsencrypt/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/letsencrypt/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/letsencrypt/default.nix b/pkgs/development/ocaml-modules/letsencrypt/default.nix
index 623fba942f2f9..a0646517b1bcd 100644
--- a/pkgs/development/ocaml-modules/letsencrypt/default.nix
+++ b/pkgs/development/ocaml-modules/letsencrypt/default.nix
@@ -1,15 +1,14 @@
 { buildDunePackage
 , lib
 , fetchurl
-, astring
 , asn1-combinators
 , uri
-, rresult
 , base64
 , logs
 , fmt
 , lwt
 , mirage-crypto
+, mirage-crypto-ec
 , mirage-crypto-pk
 , mirage-crypto-rng
 , x509
@@ -17,15 +16,16 @@
 , ounit
 , ptime
 , domain-name
+, cstruct
 }:
 
 buildDunePackage rec {
   pname = "letsencrypt";
-  version = "0.3.0";
+  version = "0.4.1";
 
   src = fetchurl {
     url = "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v${version}/letsencrypt-v${version}.tbz";
-    sha256 = "8772b7e6dbda0559a03a7b23b75c1431d42ae09a154eefd64b4c7e23b8d92deb";
+    sha256 = "f90875f5c9bdcab4c8be5ec7ebe9ea763030fa708e02857300996bb16e7c2070";
   };
 
   minimumOCamlVersion = "4.08";
@@ -43,12 +43,12 @@ buildDunePackage rec {
     lwt
     base64
     mirage-crypto
+    mirage-crypto-ec
     mirage-crypto-pk
     asn1-combinators
     x509
     uri
-    rresult
-    astring
+    cstruct
   ];
 
   doCheck = true;