3
0
Fork 0
forked from mirrors/nixpkgs

spyre: init at 1.2.1

This commit is contained in:
Fabian Affolter 2021-10-05 21:13:04 +02:00
parent 6aae893f3d
commit bf8e9d0004
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

@ -31247,6 +31247,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 { };