Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 596 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6buildGoModule rec { 7 pname = "cloudflare-utils"; 8 version = "1.4.2"; 9 10 src = fetchFromGitHub { 11 owner = "Cyb3r-Jak3"; 12 repo = "cloudflare-utils"; 13 rev = "v${version}"; 14 hash = "sha256-/vausJEe5g6Txgq1z7oUUku0w6sd/mmYcZQ8D7dZ03E="; 15 }; 16 17 vendorHash = "sha256-/kbXAljCe07dC/jL4RMeN8tKXhSPMxXY33CqBDySA8w="; 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}