nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.letsencrypt: use dune 3

authored by

Vincent Laporte and committed by
Vincent Laporte
90a21f47 65c841d1

+7 -7
+2 -2
pkgs/development/ocaml-modules/letsencrypt/app.nix
··· 17 17 18 18 buildDunePackage { 19 19 pname = "letsencrypt-app"; 20 + duneVersion = "3"; 21 + minimalOCamlVersion = "4.08"; 20 22 21 23 inherit (letsencrypt) 22 24 src 23 25 version 24 - useDune2 25 - minimumOCamlVersion 26 26 ; 27 27 28 28 buildInputs = [
+3 -3
pkgs/development/ocaml-modules/letsencrypt/default.nix
··· 25 25 26 26 src = fetchurl { 27 27 url = "https://github.com/mmaker/ocaml-letsencrypt/releases/download/v${version}/letsencrypt-v${version}.tbz"; 28 - sha256 = "f90875f5c9bdcab4c8be5ec7ebe9ea763030fa708e02857300996bb16e7c2070"; 28 + hash = "sha256-+Qh19cm9yrTIvl7H6+nqdjAw+nCOAoVzAJlrsW58IHA="; 29 29 }; 30 30 31 - minimumOCamlVersion = "4.08"; 32 - useDune2 = true; 31 + minimalOCamlVersion = "4.08"; 32 + duneVersion = "3"; 33 33 34 34 buildInputs = [ 35 35 fmt
+2 -2
pkgs/development/ocaml-modules/letsencrypt/dns.nix
··· 11 11 12 12 buildDunePackage { 13 13 pname = "letsencrypt-dns"; 14 + duneVersion = "3"; 15 + minimalOCamlVersion = "4.08"; 14 16 15 17 inherit (letsencrypt) 16 18 version 17 19 src 18 - useDune2 19 - minimumOCamlVersion 20 20 ; 21 21 22 22 propagatedBuildInputs = [