Merge pull request #187711 from dit7ya/vt-cli

vt-cli: init at 0.10.2
This commit is contained in:
Franz Pletz 2022-08-22 03:25:12 +02:00 committed by GitHub
commit 2a052ab688
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "vt-cli";
version = "0.10.2";
src = fetchFromGitHub {
owner = "VirusTotal";
repo = pname;
rev = version;
sha256 = "0jqr2xf6f9ywavkx5hzcfnky8ax23ahdj24hjsnq6zlpdqvfn1xb";
};
vendorSha256 = "sha256-XN6dJpoJe9nJn+Tr9SYD64LE0XFiO2vlpdyI9SrZZjQ=";
ldflags = [
"-X github.com/VirusTotal/vt-cli/cmd.Version=${version}"
];
subPackages = [ "vt" ];
meta = with lib; {
description = "VirusTotal Command Line Interface";
homepage = "https://github.com/VirusTotal/vt-cli";
license = licenses.asl20;
maintainers = with maintainers; [ dit7ya ];
};
}

View file

@ -5893,6 +5893,8 @@ with pkgs;
vowpal-wabbit = callPackage ../applications/science/machine-learning/vowpal-wabbit { };
vt-cli = callPackage ../tools/security/vt-cli { };
utahfs = callPackage ../applications/networking/utahfs { };
wakeonlan = callPackage ../tools/networking/wakeonlan { };