Unverified Commit 2cf9c99e authored by Franz Pletz's avatar Franz Pletz Committed by GitHub
Browse files

yaralyzer: 1.0.6 -> 1.0.9 (#441871)

parents fc7cb781 14e5736f
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -2,25 +2,21 @@
  lib,
  python3,
  fetchFromGitHub,
  gitUpdater,
}:

python3.pkgs.buildPythonApplication rec {
  pname = "yaralyzer";
  version = "1.0.6";
  version = "1.0.9";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "michelcrypt4d4mus";
    repo = "yaralyzer";
    tag = "v${version}";
    hash = "sha256-zaC33dlwjMNvvXnxqrEJvk3Umh+4hYsbDWoW6n6KmCk=";
    hash = "sha256-OGMvDPwR4WFINKJpoP242Xhi3mhDzrUypClVGgIIHJI=";
  };

  pythonRelaxDeps = [
    "python-dotenv"
    "rich"
  ];

  build-system = with python3.pkgs; [
    poetry-core
  ];
@@ -37,6 +33,10 @@ python3.pkgs.buildPythonApplication rec {
    "yaralyzer"
  ];

  passthru = {
    updateScript = gitUpdater { rev-prefix = "v"; };
  };

  meta = {
    description = "Tool to visually inspect and force decode YARA and regex matches";
    homepage = "https://github.com/michelcrypt4d4mus/yaralyzer";