Skip to content

Commit 2ffb9df

Browse files
authored
Merge pull request #322322 from yelite/new-cloudflare-utils
cloudflare-utils: init at 1.2.1
2 parents 12cb33f + 5c44ad4 commit 2ffb9df

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22015,6 +22015,12 @@
2201522015
githubId = 58453832;
2201622016
keys = [ { fingerprint = "FD0A C425 9EF5 4084 F99F 9B47 2ACC 9749 7C68 FAD4"; } ];
2201722017
};
22018+
yelite = {
22019+
name = "Lite Ye";
22020+
email = "[email protected]";
22021+
github = "yelite";
22022+
githubId = 3517225;
22023+
};
2201822024
YellowOnion = {
2201922025
name = "Daniel Hill";
2202022026
email = "[email protected]";
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
lib,
3+
buildGoModule,
4+
fetchFromGitHub,
5+
}:
6+
buildGoModule rec {
7+
pname = "cloudflare-utils";
8+
version = "1.2.1";
9+
10+
src = fetchFromGitHub {
11+
owner = "Cyb3r-Jak3";
12+
repo = "cloudflare-utils";
13+
rev = "v${version}";
14+
sha256 = "sha256-41TQ+St6U4exLSl4dwc1E6K8P+oqQ4m5RSI7L2/dWwI=";
15+
};
16+
17+
vendorHash = "sha256-HE6x4KSe9b9ZzcYz7sP25aTeDGU4zXgkYm/1RwYYBt4=";
18+
19+
meta = {
20+
description = "Helpful Cloudflare utility program";
21+
homepage = "https://github.com/Cyb3r-Jak3/cloudflare-utils";
22+
license = lib.licenses.asl20;
23+
maintainers = with lib.maintainers; [yelite];
24+
};
25+
}

0 commit comments

Comments
 (0)