Merge pull request #322322 from yelite/new-cloudflare-utils

cloudflare-utils: init at 1.2.1
This commit is contained in:
Doron Behar 2024-07-01 08:33:46 +03:00 committed by GitHub
commit 2ffb9df07d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

View File

@ -22015,6 +22015,12 @@
githubId = 58453832;
keys = [ { fingerprint = "FD0A C425 9EF5 4084 F99F 9B47 2ACC 9749 7C68 FAD4"; } ];
};
yelite = {
name = "Lite Ye";
email = "yelite958@gmail.com";
github = "yelite";
githubId = 3517225;
};
YellowOnion = {
name = "Daniel Hill";
email = "daniel@gluo.nz";

View File

@ -0,0 +1,25 @@
{
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];
};
}