traefik-certs-dumper: init at 2.7.4 (#134428)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Nick Cao 2021-08-21 20:58:16 +08:00 committed by GitHub
parent bf8853a048
commit 11e68884a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ fetchFromGitHub, buildGoModule, lib }:
buildGoModule rec {
pname = "traefik-certs-dumper";
version = "2.7.4";
src = fetchFromGitHub {
owner = "ldez";
repo = pname;
rev = "v${version}";
sha256 = "sha256-exkBDrNGvpOz/VD6yfE1PKL4hzs/oZ+RxMwm/ytuV/0=";
};
vendorSha256 = "sha256-NmYfdX5BKHZvFzlkh/kkK0voOzNj1EPn53Mz/B7eLd0=";
excludedPackages = "integrationtest";
meta = with lib; {
description = "dump ACME data from traefik to certificates";
homepage = "https://github.com/ldez/traefik-certs-dumper";
license = licenses.asl20;
maintainers = with maintainers; [ nickcao ];
};
}

View File

@ -2180,6 +2180,8 @@ with pkgs;
traefik = callPackage ../servers/traefik { };
traefik-certs-dumper = callPackage ../tools/misc/traefik-certs-dumper { };
calamares = libsForQt514.callPackage ../tools/misc/calamares {
python = python3;
boost = pkgs.boost.override { python = python3; };