chaos: init at 0.1.9 (#124306)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
e8c8b3a760
commit
25bca77c48
29
pkgs/tools/networking/chaos/default.nix
Normal file
29
pkgs/tools/networking/chaos/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "chaos";
|
||||
version = "0.1.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "projectdiscovery";
|
||||
repo = "chaos-client";
|
||||
rev = "v${version}";
|
||||
sha256 = "13lblrckf65y7kd3lw4s12bi05rv4iv25sr5xbp63l9ly5sbzaz6";
|
||||
};
|
||||
|
||||
vendorSha256 = "1mc60jkf7xmf3zsb2fihsgg3jkb2mfvsw84aby2kqcf14hdsk2gl";
|
||||
|
||||
subPackages = [
|
||||
"cmd/chaos/"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to communicate with Chaos DNS API";
|
||||
homepage = "https://github.com/projectdiscovery/chaos-client";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -1213,6 +1213,8 @@ in
|
||||
|
||||
chamber = callPackage ../tools/admin/chamber { };
|
||||
|
||||
chaos = callPackage ../tools/networking/chaos { };
|
||||
|
||||
charm = callPackage ../applications/misc/charm { };
|
||||
|
||||
chars = callPackage ../tools/text/chars {
|
||||
|
Loading…
Reference in New Issue
Block a user