Merge pull request #186334 from fabaff/cirrusgo
cirrusgo: init at 0.1.0
This commit is contained in:
commit
e6545f7ab8
26
pkgs/tools/security/cirrusgo/default.nix
Normal file
26
pkgs/tools/security/cirrusgo/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "cirrusgo";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Ph33rr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-FYI/Ldu91YB/4wCiVADeYxYQOeBGro1msY5VXsnixw4=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-KCf2KQ8u+nX/+zMGZ6unWb/Vz6zPNkKtMioFo1FlnVI=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to scan SAAS and PAAS applications";
|
||||
homepage = "https://github.com/Ph33rr/cirrusgo";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -4943,6 +4943,8 @@ with pkgs;
|
||||
|
||||
cirrus-cli = callPackage ../development/tools/continuous-integration/cirrus-cli { };
|
||||
|
||||
cirrusgo = callPackage ../tools/security/cirrusgo { };
|
||||
|
||||
inherit (callPackage ../applications/networking/remote/citrix-workspace { })
|
||||
citrix_workspace_21_01_0
|
||||
citrix_workspace_21_03_0
|
||||
|
Loading…
Reference in New Issue
Block a user