mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
traefik-certs-dumper: init at 2.7.4 (#134428)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
bf8853a048
commit
11e68884a8
2 changed files with 25 additions and 0 deletions
23
pkgs/tools/misc/traefik-certs-dumper/default.nix
Normal file
23
pkgs/tools/misc/traefik-certs-dumper/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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; };
|
||||
|
|
Loading…
Reference in a new issue