scilla: init at 20210118-74dd814

This commit is contained in:
Fabian Affolter 2021-01-18 10:12:00 +01:00
parent b7e5fea35e
commit e29d45b44d
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -27988,6 +27988,8 @@ in
scilab-bin = callPackage ../applications/science/math/scilab-bin {};
scilla = callPackage ../tools/security/scilla { };
scotch = callPackage ../applications/science/math/scotch { };
mininet = callPackage ../tools/virtualization/mininet { };