about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/cirrusgo/default.nix
blob: d7301dd604bda625841c2e6af348e4e0a82f1153 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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=";

  meta = with lib; {
    description = "Tool to scan SAAS and PAAS applications";
    mainProgram = "cirrusgo";
    homepage = "https://github.com/Ph33rr/cirrusgo";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}