forked from mirrors/nixpkgs
spyre: init at 1.2.1
This commit is contained in:
parent
6aae893f3d
commit
bf8e9d0004
35
pkgs/tools/security/spyre/default.nix
Normal file
35
pkgs/tools/security/spyre/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue