1{ lib
2, stdenv
3, buildGoModule
4, fetchFromGitHub
5}:
6
7buildGoModule rec {
8 pname = "cirrusgo";
9 version = "0.1.0";
10
11 src = fetchFromGitHub {
12 owner = "Ph33rr";
13 repo = pname;
14 rev = "v${version}";
15 hash = "sha256-FYI/Ldu91YB/4wCiVADeYxYQOeBGro1msY5VXsnixw4=";
16 };
17
18 vendorSha256 = "sha256-KCf2KQ8u+nX/+zMGZ6unWb/Vz6zPNkKtMioFo1FlnVI=";
19
20 meta = with lib; {
21 description = "Tool to scan SAAS and PAAS applications";
22 homepage = "https://github.com/Ph33rr/cirrusgo";
23 license = with licenses; [ mit ];
24 maintainers = with maintainers; [ fab ];
25 };
26}