26 lines
596 B
Nix
26 lines
596 B
Nix
|
{
|
||
|
lib,
|
||
|
buildGoModule,
|
||
|
fetchFromGitHub,
|
||
|
}:
|
||
|
buildGoModule rec {
|
||
|
pname = "cloudflare-utils";
|
||
|
version = "1.2.1";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Cyb3r-Jak3";
|
||
|
repo = "cloudflare-utils";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-41TQ+St6U4exLSl4dwc1E6K8P+oqQ4m5RSI7L2/dWwI=";
|
||
|
};
|
||
|
|
||
|
vendorHash = "sha256-HE6x4KSe9b9ZzcYz7sP25aTeDGU4zXgkYm/1RwYYBt4=";
|
||
|
|
||
|
meta = {
|
||
|
description = "Helpful Cloudflare utility program";
|
||
|
homepage = "https://github.com/Cyb3r-Jak3/cloudflare-utils";
|
||
|
license = lib.licenses.asl20;
|
||
|
maintainers = with lib.maintainers; [yelite];
|
||
|
};
|
||
|
}
|