9c0decd277
https://github.com/go-acme/lego/releases/tag/v3.0.2 Notes for this and intermediate releases: https://github.com/go-acme/lego/blob/v3.0.2/CHANGELOG.md
22 lines
569 B
Nix
22 lines
569 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "lego";
|
|
version = "3.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "go-acme";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0q73522yblcjsyscsppwnxfw6m249zr9whb93bhv5i5z012gy6mx";
|
|
};
|
|
|
|
modSha256 = "00pl8l8h01rfxyd0l4487x55kfqhpm0ls84kxmgz3vph7irm6hcq";
|
|
|
|
meta = with lib; {
|
|
description = "Let's Encrypt client and ACME library written in Go";
|
|
license = licenses.mit;
|
|
homepage = "https://go-acme.github.io/lego/";
|
|
maintainers = with maintainers; [ andrew-d ];
|
|
};
|
|
}
|