summary refs log tree commit diff
path: root/pkgs/tools/security/scilla/default.nix
blob: 1983aef1726508d161008f2b5a9ed4f1d9e420e3 (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 = "scilla";
  version = "20210118-${lib.strings.substring 0 7 rev}";
  rev = "74dd81492fef92b95765df1d0f629276a146a5a4";

  src = fetchFromGitHub {
    owner = "edoardottt";
    repo = pname;
    inherit rev;
    sha256 = "10qvaigfarljydfb9vx2fb9nk293j4g9w2h9mr8xw6adbvl0qr9q";
  };

  vendorSha256 = "04wqsl4269gc3r6l9srqhcq19zarnyyab8k1shj3w6lkfcc61z25";

  meta = with lib; {
    description = "Information gathering tool for DNS, ports and more";
    homepage = "https://github.com/edoardottt/scilla";
    license = with licenses; [ gpl3Plus ];
    maintainers = with maintainers; [ fab ];
  };
}