mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, cmake
|
|
, installShellFiles
|
|
, testers
|
|
, yara-x
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "yara-x";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "VirusTotal";
|
|
repo = "yara-x";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-KcUBaEn28hNpy1d+uqGQZUlZKCnaLcrB8th9KXHXnuQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-9W68Lm1Jc1GZ7wcS0FROZYGZkrzKn9wVBKdqlBjVOxk=";
|
|
|
|
nativeBuildInputs = [ cmake installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd yr \
|
|
--bash <($out/bin/yr completion bash) \
|
|
--fish <($out/bin/yr completion fish) \
|
|
--zsh <($out/bin/yr completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = yara-x;
|
|
};
|
|
|
|
meta = {
|
|
description = "Tool to do pattern matching for malware research";
|
|
homepage = "https://virustotal.github.io/yara-x/";
|
|
changelog = "https://github.com/VirusTotal/yara-x/releases/tag/v${version}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ fab lesuisse ];
|
|
mainProgram = "yr";
|
|
};
|
|
}
|