nixpkgs/pkgs/tools/security/cirrusgo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
597 B
Nix
Raw Normal View History

2022-08-12 20:49:15 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "cirrusgo";
version = "0.1.0";
src = fetchFromGitHub {
owner = "Ph33rr";
repo = pname;
rev = "v${version}";
hash = "sha256-FYI/Ldu91YB/4wCiVADeYxYQOeBGro1msY5VXsnixw4=";
};
vendorHash = "sha256-KCf2KQ8u+nX/+zMGZ6unWb/Vz6zPNkKtMioFo1FlnVI=";
2022-08-12 20:49:15 +00:00
meta = with lib; {
description = "Tool to scan SAAS and PAAS applications";
mainProgram = "cirrusgo";
2022-08-12 20:49:15 +00:00
homepage = "https://github.com/Ph33rr/cirrusgo";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}