Merge pull request #140667 from fabaff/spyre

This commit is contained in:
Sandro 2021-10-05 23:09:31 +02:00 committed by GitHub
commit 704b174d77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, buildGoModule
, fetchFromGitHub
, pkg-config
, yara
}:
buildGoModule rec {
pname = "spyre";
version = "1.2.1";
src = fetchFromGitHub {
owner = "spyre-project";
repo = pname;
rev = "v${version}";
sha256 = "0iijvwcybp9z70jdh5mkaj7k3cw43r72wg3ayhnpyjmvgrwij43i";
};
vendorSha256 = "1mssfiph4a6jqp2qlrksvzinh0h8qpwdaxa5zx7fsydmqvk93w0g";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
yara
];
meta = with lib; {
description = "YARA-based IOC scanner";
homepage = "https://github.com/spyre-project/spyre";
license = with licenses; [ lgpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -31358,6 +31358,8 @@ with pkgs;
spyder = with python3.pkgs; toPythonApplication spyder;
spyre = callPackage ../tools/security/spyre { };
openspace = callPackage ../applications/science/astronomy/openspace { };
stellarium = libsForQt5.callPackage ../applications/science/astronomy/stellarium { };