idk peframe i guess

This commit is contained in:
Kopatz
2025-10-19 12:16:51 +02:00
parent f680361a0a
commit b4c8922f7c
3 changed files with 67 additions and 0 deletions

View File

@@ -16,4 +16,6 @@
gpu-screen-recorder-notification = pkgs.callPackage ./gpu-screen-recorder-notification/default.nix { }; gpu-screen-recorder-notification = pkgs.callPackage ./gpu-screen-recorder-notification/default.nix { };
kavita-old = pkgs.callPackage ./kavita-old/default.nix { }; kavita-old = pkgs.callPackage ./kavita-old/default.nix { };
hollow-grub = pkgs.callPackage ./hollow-grub/default.nix { }; hollow-grub = pkgs.callPackage ./hollow-grub/default.nix { };
peframe = pkgs.callPackage ./peframe/default.nix { python3Packages = pkgs.python3Packages; inherit virustotal-api; };
virustotal-api = pkgs.callPackage ./virustotal-api/default.nix { python3Packages = pkgs.python3Packages; };
} }

36
pkgs/peframe/default.nix Normal file
View File

@@ -0,0 +1,36 @@
{lib, fetchPypi, python3Packages, swig, pkgconf, openssl, virustotal-api, ...}:
python3Packages.buildPythonApplication rec {
pname = "peframe_ds";
version = "7.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Z9/hMD3w4ZYcfPMbLUuyKhS1wWGT11Y3gdVNVqSdhvg=";
};
build-system = with python3Packages; [ setuptools ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "readline" "gnureadline"
'';
dependencies = with python3Packages; [
pefile
yara-python
python-magic
requests
oletools
m2crypto
virustotal-api
gnureadline
];
nativeBuildInputs = [ swig pkgconf openssl ];
meta = with lib; {
description = "PEframe static analysis of PE files and suspicious documents";
homepage = "https://github.com/guelfoweb/peframe";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ];
};
}

View File

@@ -0,0 +1,29 @@
{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "virustotal-api";
version = "1.1.11";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-nx14OoSOkop4qhaDcmRcaJnLvWuIiVHh1jNeW4feHD0=";
};
build-system = [ python3Packages.setuptools ];
dependencies = with python3Packages; [
requests
];
meta = {
changelog = "https://github.com/blacktop/virustotal-api/releases/tag/${version}";
homepage = "https://github.com/blacktop/virustotal-api";
description = "Virus Total Public/Private/Intel API";
license = lib.licenses.mit;
};
}