We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d58c3 commit 5c44ad4Copy full SHA for 5c44ad4
pkgs/by-name/cl/cloudflare-utils/package.nix
@@ -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