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-09-29 14:28:09 +0200
committerGitHub <noreply@github.com>2021-09-29 14:28:09 +0200
commitc1e83d738d3bf037191566be2d22cb6b19c943b3 (patch)
tree498149e2fab0c8f0e8b3fbad2e3b5e65978c92f4 /pkgs/development/ocaml-modules/letsencrypt/default.nix
parentaf51852adf5556e5627514ee1bcfa5301305f746 (diff)
ocamlPackages: update a bunch of libraries from the mirage universe (#132550)
* ocamlPackages.cstruct: 6.0.0 -> 6.0.1

https://github.com/mirage/ocaml-cstruct/releases/tag/v6.0.1

* ocamlPackages.tls: 0.13.2 -> 0.14.1

* ocamlPackages.letsencrypt: 0.2.5 -> 0.3.0

ocamlPackages.letsencrypt-dns: init at 0.3.0
ocamlPackages.letsencrypt-app: init at 0.2.5

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

* ocamlPackages.paf: 0.0.3 -> 0.0.5

ocamlPackages.paf-cohttp: init at 0.0.5
ocamlPackages.paf-le: init at 0.0.5

* ocamlPackages.conduit*: 4.0.0 -> 4.0.1

* ocamlPackages.git*: 3.4.0 -> 3.5.0

* ocamlPackages.{ipaddr, macaddr}: 5.1.0 -> 5.2.0

https://github.com/mirage/ocaml-ipaddr/releases/tag/v5.2.0

Co-Authored-By: TG ⊗ Θ <*@tg-x.net>

* jackline: unstable-2021-04-23 -> unstable-2021-08-10

* ocamlPackages.mirage-block-combinators: patch for cstruct 6.0.0

The patch is a trivial search and replace of Cstruct.len ->
Cstruct.length otherwise the build will fail due to deprecation warnings.

* ocamlPackages.x509: 0.14.0 -> 0.14.1

Co-authored-by: TG ⊗ Θ <*@tg-x.net>
Diffstat (limited to 'pkgs/development/ocaml-modules/letsencrypt/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/letsencrypt/default.nix25
1 files changed, 2 insertions, 23 deletions
diff --git a/pkgs/development/ocaml-modules/letsencrypt/default.nix b/pkgs/development/ocaml-modules/letsencrypt/default.nix
index 0a70bf3024283..623fba942f2f9 100644
--- a/pkgs/development/ocaml-modules/letsencrypt/default.nix
+++ b/pkgs/development/ocaml-modules/letsencrypt/default.nix
@@ -6,11 +6,6 @@
 , uri
 , rresult
 , base64
-, cmdliner
-, cohttp
-, cohttp-lwt
-, cohttp-lwt-unix
-, zarith
 , logs
 , fmt
 , lwt
@@ -20,38 +15,25 @@
 , x509
 , yojson
 , ounit
-, dns
-, dns-tsig
 , ptime
-, bos
-, fpath
-, randomconv
 , domain-name
 }:
 
 buildDunePackage rec {
   pname = "letsencrypt";
-  version = "0.2.5";
+  version = "0.3.0";
 
   src = fetchurl {
     url = "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v${version}/letsencrypt-v${version}.tbz";
-    sha256 = "6e3bbb5f593823d49e83e698c06cf9ed48818695ec8318507b311ae74731e607";
+    sha256 = "8772b7e6dbda0559a03a7b23b75c1431d42ae09a154eefd64b4c7e23b8d92deb";
   };
 
   minimumOCamlVersion = "4.08";
   useDune2 = true;
 
   buildInputs = [
-    cmdliner
-    cohttp
-    cohttp-lwt-unix
-    zarith
     fmt
-    mirage-crypto-rng
     ptime
-    bos
-    fpath
-    randomconv
     domain-name
   ];
 
@@ -65,11 +47,8 @@ buildDunePackage rec {
     asn1-combinators
     x509
     uri
-    dns
-    dns-tsig
     rresult
     astring
-    cohttp-lwt
   ];
 
   doCheck = true;