mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
24 lines
627 B
Nix
24 lines
627 B
Nix
{ fetchFromGitHub, buildGoModule, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "traefik-certs-dumper";
|
|
version = "2.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ldez";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-o5nTxTyLuKtWcJvcWZuVwK970DMJfEaJw8vDcShulr0=";
|
|
};
|
|
|
|
vendorHash = "sha256-rBSRZ7gKUx3tBXqhkTOmAyEx9pLw41/Bt3O+AiHqXpw=";
|
|
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 ];
|
|
};
|
|
}
|